-
Notifications
You must be signed in to change notification settings - Fork 15
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
Conflicting with suggestions #54
Comments
Hi @NeoFantom, You could try to remap keys a bit. { "key": "tab", "command": "-text-tables.gotoNextCell", "when": "tableMode" },
{ "key": "tab", "command": "text-tables.gotoNextCell", "when": "tableMode && !suggestWidgetVisible" },
{ "key": "enter", "command": "-text-tables.nextRow", "when": "tableMode" },
{ "key": "enter", "command": "text-tables.nextRow", "when": "tableMode && !suggestWidgetVisible" } These lines remove |
Perfect solution! Can't stress enough how grateful I am! |
Glad that it helped you. I guess I will make changes into keybinding of extension so that this behavior will be default. |
Conflicting with suggestions rpeshkov#54
Sometimes I need to use word suggestions provided by vscode. But I have to commit the suggested word with
![cannotCommitSuggestion](https://user-images.githubusercontent.com/38828722/64485711-4e0ce880-d256-11e9-8268-f7701bcedce4.gif)
tab
orenter
. Problem is: when I'm in table mode, bothtab
andenter
has cell-ralated functions which overrides the default suggestion-commiting. How to make this work for me?Below is a gif of what happens after I press
enter
:The text was updated successfully, but these errors were encountered: