One problem troubles me, racket (and scheme) has a lot of functions that look like string->list or int->string.
However, the completion candidates disappear if I type beyond - or >.
How can I keep narrowing completion list that contains special chars like - or >?
If you’re using Kakoune’s “scheme” plugin (i.e. :info %opt{filetype} displays “scheme”) then extra_word_chars should be set correctly:
If I launch Kakoune as kak test.scm (to create a buffer with the Scheme filetype), I can type string->list (one of the Scheme built-ins hard-coded into the Scheme plugin) and the completion works as expected. However, some of the completions mentioned in your screen-recording (like list->bytes) aren’t built-in to the scheme plugin, and there doesn’t appear to be a specific Racket plugin. Where do they come from?
I removed all static_words and use completions from kak-lsp. The static_words and words from current file can do complete perfectly, but this is not the case for kak-lsp.
I suspect there is a bug somewhere, which may be:
on kak’s side that cannot handle extra_word_chars for other completion sources
on kak-lsp’s side that extra_word_chars got ignored, and will re-query completion without consider extra_word_chars
Sorry, i don’t know any further and my guess might be wrong.
My minimalist racket.kak(which is missing in current kak)
I suspect this is a bug in kak-lsp. Kakoune’s built-in completions all respect extra_word_chars, but for various reasons it’s awkward to support in plugins. Supporting only “traditional” C-style identifiers the 20% effort that provides 80% of the results, so I’d imagine most general-purpose plugins start there and only bother to support extra_word_chars once they become popular enough that somebody notices the omission.