-
-
Notifications
You must be signed in to change notification settings - Fork 369
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
Completions are missing do
#987
Comments
Issue in haskell ide engine: haskell/haskell-ide-engine#953 |
This seems odd to me. Do other languages do this? E.g., if you write C#, does |
The linked issue explains why this is less of an issue in other languages: In something like C# completions are mostly triggered after a |
That's the state of IDE completion as it was a decade ago. In C# you're always completing, and yes, it does complete class - but probably into a snippet that contains the braces and a highlighted name too. |
When starting a file, and writing
main = do
, I get completions fordrop
etc. I suggest that keywords should be available as completions always. Particularly problematic because afterdo
I often want a newline, but in this context enter inserts the worddrop
.The text was updated successfully, but these errors were encountered: