Skip to content

Commit

Permalink
Merge pull request #339 from kasecato/#335/copilot
Browse files Browse the repository at this point in the history
Fixed #335 that shortcut keys conflict with copilot
  • Loading branch information
kasecato authored Apr 1, 2024
2 parents 8eb266f + bbca0b3 commit 5b159f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -386,14 +386,14 @@
"key": "ctrl+[ArrowRight]",
"mac": "alt+[ArrowRight]",
"command": "cursorWordRight",
"when": "editorTextFocus && !config.intellij-idea-keybindings.useCamelHumpsWords",
"when": "editorTextFocus && !inlineSuggestionVisible && !config.intellij-idea-keybindings.useCamelHumpsWords",
"intellij": "Cursor to word end"
},
{
"key": "ctrl+[ArrowRight]",
"mac": "alt+[ArrowRight]",
"command": "cursorWordPartRight",
"when": "editorTextFocus && config.intellij-idea-keybindings.useCamelHumpsWords",
"when": "editorTextFocus && !inlineSuggestionVisible && config.intellij-idea-keybindings.useCamelHumpsWords",
"intellij": "Cursor to hump end"
},
{
Expand Down
4 changes: 2 additions & 2 deletions src/package-with-comment.json
Original file line number Diff line number Diff line change
Expand Up @@ -518,14 +518,14 @@
"key": "ctrl+[ArrowRight]",
"mac": "alt+[ArrowRight]",
"command": "cursorWordRight",
"when": "editorTextFocus && !config.intellij-idea-keybindings.useCamelHumpsWords",
"when": "editorTextFocus && !inlineSuggestionVisible && !config.intellij-idea-keybindings.useCamelHumpsWords",
"intellij": "Cursor to word end"
},
{
"key": "ctrl+[ArrowRight]",
"mac": "alt+[ArrowRight]",
"command": "cursorWordPartRight",
"when": "editorTextFocus && config.intellij-idea-keybindings.useCamelHumpsWords",
"when": "editorTextFocus && !inlineSuggestionVisible && config.intellij-idea-keybindings.useCamelHumpsWords",
"intellij": "Cursor to hump end"
},
{
Expand Down

0 comments on commit 5b159f0

Please sign in to comment.