-
Notifications
You must be signed in to change notification settings - Fork 11
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
Allow to disable asm auto-completion #29
Comments
Hi, I think the same about auto-completion in assembly, but it can be solved with language-specific configuration in the user settings ( "[z80-macroasm]": {
"editor.quickSuggestions": {
"comments": "off",
"strings": "off",
"other": "off"
},
}, Note: I also have this two settings in general (i.e.: for any language). I think they are not relevant, but, just in case...: "editor.suggestOnTriggerCharacters": false,
"editor.wordBasedSuggestions": false, |
Hello, |
Hi @Dark-Schneider-666, |
Hi @Dark-Schneider-666, version v0.7.9 which I just released should not suggest instructions by default. Please, let me know if it improve your experience. 😉 |
Nice suggestion and addition @Dark-Schneider-666 @mborik! I'll test it this weekend as well. |
I just hit that problem yesterday when I wanted to give the extension a spin. It's especially problematic when you write |
It seems like I have the latest version and still hit that problem despite "Suggest On Instructions" is disabled. I guess I need "argument suggestions" to be turned off too. |
@theNestruo's |
Nice. As I had it installed from earlier it was not set by default even if uninstalled and reinstalled as VSCode saves the config and didn't know where it saves on macOS (have to find). |
Ah, I see! Thank you for this specific case description. I think that issue is, that one of commit characters for instructions and arguments completion is space. I think that could lead to these problems. This would be easy to fix. ☝️ |
Hi guys, especially @ssg, check latest release, please, where I removed space key as commit character for suggestions. |
sorry @mborik, many things have come up at the same time, so I couldn't check it yet. I'll comment here if it repros in the latest version. thanks! |
Hi,
I feel this plug-in almost perfect but for the asm auto-completion, IMHO very intrusive. The asm language is "short" to write, the completion boxes appearing so frequently for short writes can be distracting, and sometimes you have to press even more keys, i.e. when writing "ret", have to press enter 2 times for going to the next line.
Then I see very useful the auto-completion of labels, but not so much for the asm code itself. If I could disable it I'd do.
Thanks for the plug-in to all this.
The text was updated successfully, but these errors were encountered: