Skip to content

Commit

Permalink
fix: コミットメッセージを入力する箇所でショートカットが誤作動する問題を修正 #44
Browse files Browse the repository at this point in the history
  • Loading branch information
yutotnh authored Jan 19, 2024
1 parent 0aa9cfd commit b3f6830
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,37 +35,37 @@
"command": "word-divider.cursorWordLeft",
"key": "ctrl+left",
"mac": "alt+left",
"when": "textInputFocus && !accessibilityModeEnabled"
"when": "editorTextFocus && !accessibilityModeEnabled"
},
{
"command": "word-divider.cursorWordEndRight",
"key": "ctrl+right",
"mac": "alt+right",
"when": "textInputFocus && !accessibilityModeEnabled"
"when": "editorTextFocus && !accessibilityModeEnabled"
},
{
"command": "word-divider.cursorWordLeftSelect",
"key": "ctrl+shift+left",
"mac": "shift+alt+left",
"when": "textInputFocus && !accessibilityModeEnabled"
"when": "editorTextFocus && !accessibilityModeEnabled"
},
{
"command": "word-divider.cursorWordEndRightSelect",
"key": "ctrl+shift+right",
"mac": "shift+alt+right",
"when": "textInputFocus && !accessibilityModeEnabled"
"when": "editorTextFocus && !accessibilityModeEnabled"
},
{
"command": "word-divider.deleteWordLeft",
"key": "ctrl+backspace",
"mac": "alt+backspace",
"when": "textInputFocus && !editorReadonly"
"when": "editorTextFocus && !editorReadonly"
},
{
"command": "word-divider.deleteWordRight",
"key": "ctrl+delete",
"mac": "alt+delete",
"when": "textInputFocus && !editorReadonly"
"when": "editorTextFocus && !editorReadonly"
}
]
},
Expand Down

0 comments on commit b3f6830

Please sign in to comment.