-
Notifications
You must be signed in to change notification settings - Fork 78
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
Fix #183 idea #958
Fix #183 idea #958
Conversation
What happens when I write:
Where the cursor is at |
Yes, it's essentially the same problem under different circumstances. |
Yes, but I think this is preferable as I think this case is not annoying. Where the non-suggestion of the |
If you can convince the other maintainers it's a good idea then I won't block this. |
I'm in favor |
I don't think this is the correct solution. The lack of keyword suggestions affects all editors that use ocaml-lsp, so it shouldn't only be fixed in this editor. I don't mind if keywords are suggested when an identifier is expected, but I would prefer a solution in ocaml-lsp or merlin so we don't need to maintain a list of keywords just for VS Code. |
I totally agree with you but I don't think it will be supported on |
This solution was already discussed in #1088 . IMO, it would be the best to solve keyword completion in merlin/ocaml-lsp. |
ocaml-lsp has already supported the completion of |
Why don't we add
in
anddo
to snippets to facilitate their insertion ? With this, words likedo_at_exit
andin_channel_length
would not be given priority. I think vscode's behaviour is better with these snippets.