-
-
Notifications
You must be signed in to change notification settings - Fork 22
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
Autocomplete of "include" interferes with typing "in" #61
Comments
Fixed in 0.51.1, I just added 'in' in the completion terms |
FYI, I'm working again on the ocaml side in the plugin (I'm trying to add an ocaml sdk to get completion and type inference). |
I submitted one more issue for you earlier. It would awesome to make the plugin work with the OCaml parser/semantic information. I'd rank my wishes related to that in this order:
|
One other thought: In Java files, if you put the cursor on "{", IJ will highlight the matching "}". It would be neat to do something similar for OCaml. For example matching "begin" to "end". Or "let" to "in"/"and", though you'd have to recognize whether it's an inner let that has "in" or an outer let that doesn't. Or to highlight where a "match" ends. There are other possibilities, too. Jump to the next match case, jump to the next function, jump to the next expression. Might be interesting. |
plugin version: 0.50
Description
Let statements frequently end with "in" at the end of a line, for which I type "i", "n" and Enter. However, there is an autocomplete defined for "include" that shows up immediately after I type "n", at which point pressing Enter changes "in" to "include", which I then have to change back to "in". This is annoying, especially since "in" is a much more common keyword than "include". Hope you can improve this.
The text was updated successfully, but these errors were encountered: