[racket-users] Want to change Racket GUI application title (on the taskbar)

2020-11-22 Thread JavaCommons
When I build Racket (scheme) GUI application like this: raco exe --gui gui-01.rkt Windows taksbar displays the name of the application as "Racket GUI application". I want to change this name to something like "My GUI Program". Is this possible? [image: 無題.png] -- You received this message

[racket-users] Questions

2020-11-22 Thread Nate Griswold
Hello. I have a few questions: 1) Why do the docs say that racket_eval and racket_apply eval and apply in the “initial” or “original” racket thread? I have verified that the thread id returned from pthread_self when using racket_apply in c code called from a racket place is different from the

[racket-users] Re: Copy keybinding in DrRacket not working

2020-11-22 Thread Dimaugh Silvestris
Ok, so I have tried adding a custom keybinding so that Control+n does the copying: (keybinding "c:n" (lambda (editor evt) (send editor copy))) Works perfect, but conflicts a bit with my muscle memory. So I tried adding a custom keybinding using c:c, and now when I open DrRacket, I

[racket-users] Copy keybinding in DrRacket not working

2020-11-22 Thread Dimaugh Silvestris
For some reason, Control+c isn't working in DrRacket, while Control+x for cut and Control+v work as expected. I think I've had this since I installed DrRacket, and I haven't changed anything about keybindings that I remember; I've been using the right-click menu instead, but it's cumbersome