Re: [racket-users] Non-ASCII characters stripped from input in macOS Terminal

2018-09-14 Thread Jon Kleiser
Thanks, Matthew! That was the final touch. I guess I will have to repeat that "ln -s" line after I upgrade Racket to the next version. Right? fredag 14. september 2018 15.55.57 UTC+2 skrev Matthew Flatt følgende: > > I forgot that Mac OS provides "/usr/lib/libreadline.dylib" as a symlink > to

[racket-users] Re: Using ctags and vim with Racket

2018-09-14 Thread Marc Kaufmann
Thanks Alex, that was it. I thought I had tried it by setting .rkt to be interpreted as .scm, but I think that got overridden by vim-racket plugin. What I now did is: ctags --language-force=scheme *.rkt Cheers, Marc On Friday, September 14, 2018 at 12:24:32 AM UTC+2, Alex Harsanyi wrote: > >

[racket-users] Non-ASCII characters stripped from input in macOS Terminal

2018-09-14 Thread Jon Kleiser
If I enter this in the REPL in my macOS Terminal (string->list "hei") then I get '(#\h #\e #\i), as expected, but if I replace "hei" with "høy", the input line suddenly looks like this (string->list "h\U+FFC3\U+FFB8y") and what I get back is '(#\h #\y). The letter "ø" has been stripped away. The

Re: [racket-users] Non-ASCII characters stripped from input in macOS Terminal

2018-09-14 Thread Jens Axel Søgaard
Den fre. 14. sep. 2018 kl. 10.28 skrev Jon Kleiser : > If I enter this in the REPL in my macOS Terminal > (string->list "hei") > then I get '(#\h #\e #\i), as expected, but if I replace "hei" with > "høy", the input line suddenly looks like this > (string->list "h\U+FFC3\U+FFB8y") > and what I

Re: [racket-users] Non-ASCII characters stripped from input in macOS Terminal

2018-09-14 Thread Jon Kleiser
My Terminal "Advanced" tab also says "Unicode (UTF-8)". When I run the PicoLisp REPL, then I have no translation and stripping, "høy" is entered as "høy", it seems. fredag 14. september 2018 10.55.28 UTC+2 skrev Jens Axel Søgaard følgende: > > > Den fre. 14. sep. 2018 kl. 10.28 skrev Jon Kleiser

[racket-users] Where to start in DrRacket to support highlighting for Syntax Warnings?

2018-09-14 Thread Tom Gillespie
Hi all, The language I'm developing has a strong use case for syntax warnings for reporting cases of missing information (aka optional syntactic elements) to the user. I have done a first pass integration, and after reading Jack Firth's slides

[racket-users] Using racket with emacs

2018-09-14 Thread tejaswi prakash
Hello everyone, I am new to racket and intend on using it for my projects. I was wondering about how to use racket with emacs instead of using drracket as that's a more familiar environment for me. Any advice? Thank you, Tejaswi -- You received this message because you are subscribed to the

Re: [racket-users] Using racket with emacs

2018-09-14 Thread Neil Van Dyke
Use Greg Hendershott's `racket-mode`: https://github.com/greghendershott/racket-mode -- 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

Re: [racket-users] Non-ASCII characters stripped from input in macOS Terminal

2018-09-14 Thread Matthew Flatt
This is a problem with libedit, which Racket uses by default, and the version of libedit that comes with Mac OS is not built with Unicode support. If you insteall readline (e.g., through Homebrew), then installing the "readline-gpl" Racket package will use readline and support Unicode input. At

[racket-users] Re: Using racket with emacs

2018-09-14 Thread Eric Eide
Neil Van Dyke writes: > Use Greg Hendershott's `racket-mode`: > https://github.com/greghendershott/racket-mode Seconded! Racket-mode is excellent, and it grows more excellent over time. -- --- Eric Eide .

Re: [racket-users] Non-ASCII characters stripped from input in macOS Terminal

2018-09-14 Thread Jon Kleiser
Thanks for the info. However, there must be one detail I'm missing. I have done "brew install readline", and "raco pkg install readline-gpl", and when I now do "raco pkg show", I get this: Installation-wide: PackageChecksum Source main-distribution 34484fc4a83e3441...

Re: [racket-users] Non-ASCII characters stripped from input in macOS Terminal

2018-09-14 Thread Matthew Flatt
I forgot that Mac OS provides "/usr/lib/libreadline.dylib" as a symlink to libedit, so installing readline via Homebrew doesn't (and shouldn't) replace it. To point Racket at your Homebrew-installred readline, go to the "lib" directory adjacent to the "bin" directory that contains "racket", and