Skip to content

Commit

Permalink
Fix Tab key confliction with accepting suggestion or snippet. [fix #8]
Browse files Browse the repository at this point in the history
  • Loading branch information
takumisoft68 committed Sep 5, 2020
1 parent 6b757c4 commit e9992b6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"publisher": "TakumiI",
"displayName": "Markdown Table",
"description": "A minimal extension for markdown table. Add context menu to edit markdown table.",
"version": "0.2.1",
"version": "0.2.2",
"repository": {
"type": "git",
"url": "https://github.com/takumisoft68/vscode-markdown-table"
Expand Down Expand Up @@ -56,12 +56,12 @@
{
"command": "markdowntable.nextCell",
"key": "tab",
"when": "editorLangId == markdown && editorTextFocus"
"when": "editorLangId == markdown && editorTextFocus && !editorReadonly && !editorTabMovesFocus && !suggestWidgetMultipleSuggestions && !suggestWidgetVisible && !inSnippetMode"
},
{
"command": "markdowntable.prevCell",
"key": "shift+tab",
"when": "editorLangId == markdown && editorTextFocus"
"when": "editorLangId == markdown && editorTextFocus && !editorReadonly && !editorTabMovesFocus && !suggestWidgetMultipleSuggestions && !suggestWidgetVisible && !inSnippetMode"
}
],
"menus": {
Expand Down

0 comments on commit e9992b6

Please sign in to comment.