Re: [racket-users] DrRacket complete word more convenient setting

2021-06-17 Thread Andrey
>> >> Is there some particular image functionality that drracket has, that > isn't supported in racket mode? > 1. On my notebook I use terminal emacs with wsl2. 2. I really a vim user, so I'm just learning emacs now (with doom emacs and evil). 3. I want to use a DrRacket as a programmable

Re: [racket-users] DrRacket complete word more convenient setting

2021-06-17 Thread schle...@gmail.com
> > In fact, Emacs suits me very well, but for working with images I would > like to use DrRaket. > I wonder what about images makes you want to leave emacs, when you run `racket-run` (racket mode) from a racket module file in emacs it executes (and enters) that module and then opens a split

Re: [racket-users] DrRacket complete word more convenient setting

2021-06-17 Thread Laurent
Then you may be interested in DrComplete: https://pkgs.racket-lang.org/package/drcomplete On Thu, Jun 17, 2021 at 7:54 AM Andrey wrote: > Thanks you. But that's not what I wanted. In fact, Emacs suits me very > well, but for working with images I would like to use DrRaket. But minor >

Re: [racket-users] DrRacket complete word more convenient setting

2021-06-17 Thread Andrey
Thanks you. But that's not what I wanted. In fact, Emacs suits me very well, but for working with images I would like to use DrRaket. But minor inconveniences get in the way - like the lack of a familiar auto-completion and inconvenient hints. It is a pity that I am still far from having a

Re: [racket-users] DrRacket complete word more convenient setting

2021-06-16 Thread Laurent
There's a quickscript that does something similar, but not quite what you want: https://github.com/Metaxal/quickscript-extra/blob/master/scripts/dynamic-abbrev.rkt It does cycle through completions by pressing the same keybinding repeatedly, but it autocompletes only according to the words that

[racket-users] DrRacket complete word more convenient setting

2021-06-16 Thread Andrey
I configured Tab key according a solution found somewhere: #lang s-exp framework/keybinding-lang (keybinding "tab" (λ(editor event) (send editor auto-complete))) It works but I wonder is it possible to setup it like in emacs in racket-mode: 1. Repeating key pressing complete common part