Skip to content

Commit

Permalink
Merge pull request #328 from kasecato/#224/goToBracket
Browse files Browse the repository at this point in the history
Add #224 that ctrl+m go to bracket
  • Loading branch information
kasecato authored Feb 23, 2024
2 parents 7756f15 + 2b9a8ea commit 93aa8c9
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@

Port of IntelliJ IDEA key bindings for VS Code. Includes keymaps for popular JetBrains products like IntelliJ Ultimate, WebStorm, PyCharm, PHP Storm, etc.

## Usage

### Editing

Linux, Windows | macOS | Feature | Supported
Expand Down Expand Up @@ -201,6 +199,7 @@ ctrl+alt+shift+down | ctrl+alt+shift+down | Next Change | ✅
ctrl+alt+shift+up | ctrl+alt+shift+up | Previous Change | ✅
ctrl+home | cmd+home | Move Caret to Text Start | ✅
ctrl+end | cmd+end | Move Caret to Text End | ✅
ctrl+shift+m | ctrl+m | Move Caret to Matching Brace | ✅
ctrl+shift+t | cmd+shift+t | Go to Test | ✅

### Refactoring
Expand Down
7 changes: 7 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -1099,6 +1099,13 @@
"when": "textInputFocus",
"intellij": "Move Caret to Text End"
},
{
"key": "ctrl+shift+m",
"mac": "ctrl+m",
"command": "editor.action.jumpToBracket",
"when": "editorTextFocus",
"intellij": "Move Caret to Matching Brace"
},
{
"key": "ctrl+[End]",
"mac": "cmd+[ArrowDown]",
Expand Down
7 changes: 7 additions & 0 deletions src/package-with-comment.json
Original file line number Diff line number Diff line change
Expand Up @@ -1460,6 +1460,13 @@
"when": "textInputFocus",
"intellij": "Move Caret to Text End"
},
{
"key": "ctrl+shift+m",
"mac": "ctrl+m",
"command": "editor.action.jumpToBracket",
"when": "editorTextFocus",
"intellij": "Move Caret to Matching Brace"
},
{
"key": "ctrl+[End]",
"mac": "cmd+[ArrowDown]",
Expand Down

0 comments on commit 93aa8c9

Please sign in to comment.