Re: [racket-users] Tools and Syntax Highlighting

2021-01-06 Thread Stephen De Gabrielle
Glad to hear it! On Wed, Jan 6, 2021 at 8:10 AM Ben Ryjikov wrote: > Hi Robby and Stephen, > > Thanks for your suggestions! It’s working now thanks to a mix of rackunit > tools and dynamic require. > We’re also thinking about how to make our code less reliant on DrRacket. > > Best, > Ben > > On

Re: [racket-users] Tools and Syntax Highlighting

2021-01-06 Thread Ben Ryjikov
Hi Robby and Stephen, Thanks for your suggestions! It’s working now thanks to a mix of rackunit tools and dynamic require. We’re also thinking about how to make our code less reliant on DrRacket. Best, Ben > On Jan 4, 2021, at 8:11 PM, Robby Findler wrote: > > I think a good first question

Re: [racket-users] Tools and Syntax Highlighting

2021-01-04 Thread Robby Findler
I think a good first question here is "what do you want to happen when you are running the program from outside DrRacket?". DrRacket is, in a general sense, designed to reflect extra information about how a program runs when it can glean that information, but it isn't meant to be the only way that

Re: [racket-users] Tools and Syntax Highlighting

2021-01-04 Thread Stephen De Gabrielle
Sorry I'm not good at this - some guesses below. HTH On Mon, Jan 4, 2021 at 7:46 PM Ben Ryjikov wrote: > I’m sorry - I didn’t explain what kind of highlighting we’re looking for. > > We’re building a new #lang, and we want it so that sometimes when you run, > DrRacket highlights a part of the

Re: [racket-users] Tools and Syntax Highlighting

2021-01-04 Thread Ben Ryjikov
I’m sorry - I didn’t explain what kind of highlighting we’re looking for. We’re building a new #lang, and we want it so that sometimes when you run, DrRacket highlights a part of the program you are running. But we only want that in certain situations, so we want to create a function which we

Re: [racket-users] Tools and Syntax Highlighting

2021-01-04 Thread Stephen De Gabrielle
On Mon, Jan 4, 2021 at 12:32 AM Ben Ryjikov wrote: > Hi Racket, > > Is it possible for a tool invoked by info.rkt to access code which is > outside of the tool? > > We’re building a #lang and would like to have on-demand syntax > highlighting. > We’ve tried using a tool, and have successfully