Skip to content

Commit a118626

Browse files
author
Keisuke KATO
authored
fixed Map Select all occurrences to ctrl+shift+alt+j #47 (#49)
1 parent ccf2ce6 commit a118626

File tree

4 files changed

+15
-0
lines changed

4 files changed

+15
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## 0.2.6 (December 6, 2016)
44

5+
* enhancement - ctrl+q should be bound to show hover. See [#46](https://github.com/k--kato/vscode-intellij-idea-keybindings/issues/46).
56
* enhancement - ctrl+q should be bound to show hover. See [#46](https://github.com/k--kato/vscode-intellij-idea-keybindings/issues/46).
67

78
## 0.2.5 (December 1, 2016)

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,7 @@ shift+f7 | shift+f7 | Previous difference | ✅
235235
alt+ctrl+enter | alt+cmd+enter | Start new line before current | ✅
236236
shift+ctrl+enter | shift+cmd+enter | Start new line | ✅
237237
alt+f12 | alt+f12 | Open corresponding tool window (Terminal) | ✅
238+
ctrl+shift+alt+j | ctrl+cmd+g | Sublime Text style multiple selections | ✅
238239

239240

240241
## Installation

package.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1359,6 +1359,12 @@
13591359
"mac": "alt+f12",
13601360
"command": "workbench.action.terminal.toggleTerminal",
13611361
"intellij": "Open corresponding tool window (Terminal)"
1362+
}, {
1363+
"key": "ctrl+shift+alt+j",
1364+
"mac": "ctrl+cmd+g",
1365+
"command": "editor.action.selectHighlights",
1366+
"when": "editorFocus",
1367+
"intellij": "Sublime text Style Multiple Selections"
13621368
}
13631369
]
13641370
}

src/package-with-comment.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1439,6 +1439,13 @@
14391439
"mac": "alt+f12",
14401440
"command": "workbench.action.terminal.toggleTerminal",
14411441
"intellij": "Open corresponding tool window (Terminal)"
1442+
},
1443+
{
1444+
"key": "ctrl+shift+alt+j",
1445+
"mac": "ctrl+cmd+g",
1446+
"command": "editor.action.selectHighlights",
1447+
"when": "editorFocus",
1448+
"intellij": "Sublime Text style multiple selections"
14421449
}
14431450
]
14441451
}

0 commit comments

Comments
 (0)