Re: [racket-users] Is there a way to enter! a file from the command line?

2018-09-08 Thread Vityou
> > You could do > > racket --repl --eval '(enter! "foo.rkt")' > Thanks, I tried --eval, I don't know why I didn't think to add --repl. Also, have you seen:

Re: [racket-users] Is there a way to enter! a file from the command line?

2018-09-08 Thread Greg Hendershott
> racket --repl --eval '(enter! "foo.rkt")' Also, you could simply `racket --repl` once. In recent versions of Racket, XREPL is enabled by default. It has commands like `,enter` that you could use if you can arrange for vscode to send text to the racket input port. (This is how very early vers

Re: [racket-users] Is there a way to enter! a file from the command line?

2018-09-08 Thread Greg Hendershott
You could do racket --repl --eval '(enter! "foo.rkt")' -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to racket-users+unsubscr...@googlegroups.com. For more o

[racket-users] Is there a way to enter! a file from the command line?

2018-09-08 Thread Vityou
I'm testing out vscode to see if it is good for writing racket, and I like it so far. It allows you to set a custom run command for a language. Right now, racket's is just set to "racket". This is fine, but I would like it to be similar to DrRacket's interactions window, where it "enter!"s t