-
Notifications
You must be signed in to change notification settings - Fork 419
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
Better code completions #7
Comments
We're currently missing keywords such as public, private, await, linq keywords etc. Also we need Console.WL to complete WriteLine |
Attributes should complete without the word attribute, e.g. |
/cc @Pilchie |
I'm not sure if this makes any sense by parameter intellisense? Maybe we need to expand the response type to support parameter intellisense for method invocations |
Vs treats these at two separate features - completion and signature help. Some other editors (cough eclipse cough) merge them into a single list. I wonder if there shouldn't be a separate endpoint for returning overload info for VS like clients. At the same time, this response probably does need more info to enable eclipse style presentation before a symbol name is chosen. From: David Fowlermailto:[email protected] I'm not sure if this makes any sense by parameter intellisense? Maybe we need to expand the response type to support parameter intellisense for method invocations Reply to this email directly or view it on GitHub: |
Lets have separate endpoint then. We should allow editors to do both the VS approach and the snippet approach. |
Created a separate ticket for snippets #38 |
Need to order completions like this :-
|
Is there any updates with attributes autocomplete? Suffix "Attribute" is really annoying.
|
Resolved by #840 |
Add test project + compilations
Currently /autocomplete returns a list of symbols ... but only after a '.'
Also we don't get any parameter information or 'snippets'
The text was updated successfully, but these errors were encountered: