-
Notifications
You must be signed in to change notification settings - Fork 676
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
HOW TO TURN OFF SPACE AUTO COMPLETE!!??? #3647
Comments
Thanks for the report. Do you have a code sample or screenshot showing this behavior? Thanks! |
Space should not be considered a commit character unless you have used the arrow keys to select something. Please let me know is this is not what you are seeing. A screen-shot or precise repo would help a lot :) |
Possible duplicate of #1936 |
OmniSharp is returning completion items while in doc comments and the completion items are not being returned as suggestions. Possible fix would be to first check if |
Workaround using Code Snippets: At least now I can type P.S. @rhys-vdw I have faced the same problem T_T P.P.S. Also works: disable "Accept Suggestion On Commit Character": |
I'm also giving +1 This is a big issue when e.g. adding an event handler with lambdas. @2jacobtan Thanks for the hint with "Accept Suggestion On Commit Character", it just saved my live, as I usually not use this functionality. |
This is really terrible! I even cannot type a 'var' with space! When could this be fixed? |
Thank you so much @2jacobtan for the tip! A true life saver! |
This is really annoying. Normally only tabbing should commit autocompletion. Thats how the autocompletion works on all other languages. |
Ohhhhhh, thank you! Typing "i" had become a nightmare! This is a feature? |
When will this finally be fixed? I'm thinking about disabling this extension altogether as "await" has become the bane of my existence! |
So weird to read about turning off space autocompletion. I have an opposite problem - how to turn it on in VS code - it uses TAB which is extremely uncomfortable. |
I found a way to add space(or any other button in the same way). You have to go to the keybindings.json and add there the following: |
To anyone being used to autocomplete on Tab and/or Enter and only these: This is the solution you're looking for. https://code.visualstudio.com/docs/editor/intellisense#_settings And @pedwards95 isn't quite right. The maintainers might consider pinning an issue explaining that this is not a bug and point the users to the docs, to prevent further "false-positives" |
A space should never be used as a completion character. This setting should be turned off by default. |
What is this garbage?!! Who thought it was a good idea to make space accept the autocomplete? Utterly ridiculous that this hasn't been fixed by now, the authors of this extension obviously don't actually use it. |
It would be great if this "Editor: Accept Suggestion On Commit Character" would be disabled by default |
Agreed. This problem brought me here. This discussion should have been ended and fixed at least 2 years ago. I couldn't even add the 'public' keyword before an existing field without it autocompleting and doubling the time and typing required. |
It seems that after last update overwriting was fixed, if I write simething at row beginning and then press Enterk key, written text isn't errased and I can proceed normally without rewriting |
Ran into this with C#. Workaround as suggested here was to disable "Accept Suggestion On Commit Character". How is this still an issue 3 years later? I understand that the workaround is fairly easy to implement, but this isn't exactly desired out-of-the-box behaviour. |
This is a behavior that feels very uncomfortable to engage in, and there's no way to modify it. |
Ran into this too, why in C# is space a commit character? Here's how to do a C# specific disablement of that setting: "[csharp]": {
"editor.acceptSuggestionOnCommitCharacter": false,
} |
The space auto complete in this extention is horrid. It doesn't consider what you typed past the first couple of letters. EVEN IF YOU WAIT TO PRESS SPACEBAR.
AND WHY IS THE AUTO COMPLETE BUTTON SPACEBAR???????
We use spacebar all the freaking time when coding. Why is such an important button the AUTOCOMPLETE.
After searching Google, this is a problem that has been around for at least 2 years. The only solution is to turn off autocomplete all together. Why can't I rebind it?
Bad design. Bad planning. Useless feature in current implementation.
ps. Its broken in insider too.
pss. It happens with ONLY your extension installed, and stops when disabling setting in the extension. The problem is 100% this and only this.
Steps to reproduce
Expected behavior
Normal typing behavior as defined by every computer, phone, tablet, ect.
Actual behavior
Your typed word or letter changes into a long variable name that doesn't even work in the context of the code.
The text was updated successfully, but these errors were encountered: