Skip to content

Commit

Permalink
Merge pull request #37 from takumisoft68/feature/CustomContextKey
Browse files Browse the repository at this point in the history
Feature/custom context key
  • Loading branch information
takumisoft68 authored Jan 25, 2022
2 parents 97e5b1f + 28df2b3 commit 537cfa4
Show file tree
Hide file tree
Showing 8 changed files with 1,020 additions and 1,031 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,12 @@
{
"command": "markdowntable.nextCell",
"key": "tab",
"when": "editorLangId == markdown && editorTextFocus && !editorReadonly && !editorTabMovesFocus && !suggestWidgetMultipleSuggestions && !suggestWidgetVisible && !inSnippetMode"
"when": "editorLangId == markdown && editorTextFocus && !editorReadonly && !editorTabMovesFocus && !suggestWidgetMultipleSuggestions && !suggestWidgetVisible && !inSnippetMode && selectionInMarkdownTable"
},
{
"command": "markdowntable.prevCell",
"key": "shift+tab",
"when": "editorLangId == markdown && editorTextFocus && !editorReadonly && !editorTabMovesFocus && !suggestWidgetMultipleSuggestions && !suggestWidgetVisible && !inSnippetMode"
"when": "editorLangId == markdown && editorTextFocus && !editorReadonly && !editorTabMovesFocus && !suggestWidgetMultipleSuggestions && !suggestWidgetVisible && !inSnippetMode && selectionInMarkdownTable"
},
{
"command": "markdowntable.format",
Expand All @@ -111,12 +111,12 @@
{
"command": "markdowntable.nextCell",
"key": "tab",
"when": "editorLangId == mdx && editorTextFocus && !editorReadonly && !editorTabMovesFocus && !suggestWidgetMultipleSuggestions && !suggestWidgetVisible && !inSnippetMode"
"when": "editorLangId == mdx && editorTextFocus && !editorReadonly && !editorTabMovesFocus && !suggestWidgetMultipleSuggestions && !suggestWidgetVisible && !inSnippetMode && selectionInMarkdownTable"
},
{
"command": "markdowntable.prevCell",
"key": "shift+tab",
"when": "editorLangId == mdx && editorTextFocus && !editorReadonly && !editorTabMovesFocus && !suggestWidgetMultipleSuggestions && !suggestWidgetVisible && !inSnippetMode"
"when": "editorLangId == mdx && editorTextFocus && !editorReadonly && !editorTabMovesFocus && !suggestWidgetMultipleSuggestions && !suggestWidgetVisible && !inSnippetMode && selectionInMarkdownTable"
}
],
"menus": {
Expand Down
Loading

0 comments on commit 537cfa4

Please sign in to comment.