-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Lexical autocomplete #1063
Comments
I would find this useful too, for writing text / LaTeX documents! |
Related #1015 |
Could anybody please provide the latest status on this FR ? |
"It is not done" |
Currently exists two PRs, they can be helpful on waiting this feature
AFAIK PRs above would't merged in, but I'm hope about "core team" would implement this feature in best choice. |
I've made a simple proof-of-concept LSP that performs autocompletion for the words found in the current buffer. You can find it here https://github.com/metafates/buffer-language-server |
@metafates nice! Take a look to my solution too https://github.com/estin/simple-completion-language-server |
This comment was marked as spam.
This comment was marked as spam.
I found this |
In addition to what was said in #3328 (comment), I think if there were someone interested in implementing this, it might be a good idea to register it as a hook for the event system which should relatively compartmentalize the code from the rest of Helix. |
Describe your feature request
According to comments in #901, autocomplete has no native implementation and relies solely on LSP. A consequence of this is that when the user has no LSP installed, or one doesn't exist for the file type you are editing, there is no autocomplete at all.
It would be nice if there was a built-in autocomplete that is based purely on the tokens in the current document, without any language awareness.
The text was updated successfully, but these errors were encountered: