[racket-users] Re: Complete Word (Ctrl+/)

2018-11-05 Thread Gregor Kopp
@Glenn Hoetker: First, create a file with rkt ending with the following content: #lang s-exp framework/keybinding-lang (text:get-completions/manuals false) (keybinding "c:TAB" (λ (editor event) (send editor auto-complete))) ; i changed this to control+tab, its more convenient for me. (keybinding

Re: [racket-users] Re: Complete Word (Ctrl+/)

2018-11-05 Thread Robby Findler
Maybe you can call this function: http://docs.racket-lang.org/framework/Text.html?q=get-completions%2Fmanuals#%28def._%28%28lib._framework%2Fmain..rkt%29._text~3aget-completions%2Fmanuals%29%29 from the top-level of your keybindings file? Robby On Mon, Nov 5, 2018 at 3:11 AM Glenn Hoetker wrot

[racket-users] Re: Complete Word (Ctrl+/)

2018-11-05 Thread Glenn Hoetker
I'm afraid I don't have a suggestion, but a question. The code you provided makes sense to me and duplicates something I'd like, but I'm unsure how to enable it in DrRacket. May I ask how you did so? Thank you. Glen On Wednesday, September 12, 2018 at 6:11:12 PM UTC+10, Gregor Kopp wrote: >