Skip to content

Commit

Permalink
Merge pull request #181 from kasecato/#180/changeAllOccurences
Browse files Browse the repository at this point in the history
Added #180 Binding Change All Occurences to Shift+F6
  • Loading branch information
kasecato authored May 19, 2020
2 parents f3afb09 + a9b8d08 commit c7b0feb
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 0.2.40 (May 19, 2020)

* enhancement - Binding "Change All Occurences" to Shift+F6. See [#180](https://github.com/kasecato/vscode-intellij-idea-keybindings/issues/180)

## 0.2.39 (May 11, 2020)

* enhancement - Add column selection shortcut. See [#178](https://github.com/kasecato/vscode-intellij-idea-keybindings/pull/178)
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ f5 | f5 | Copy | N/A
f6 | f6 | Move | N/A
alt+delete | cmd+delete | Safe Delete | N/A
shift+f6 | shift+f6 | Rename | ✅
shift+f6 | shift+f6 | Select All Occurrences | ✅
shift+f6 | shift+f6 | Rename (File) | ✅
ctrl+f6 | cmd+f6 | Change Signature | N/A
ctrl+alt+n | cmd+alt+n | Inline | N/A
Expand Down Expand Up @@ -346,6 +347,7 @@ when changes are saved.
* [@faucct](https://github.com/faucct)
* [@glyn](https://github.com/glyn)
* [@ronaldstevanus](https://github.com/ronaldstevanus)
* [@goncalossilva](https://github.com/goncalossilva)


## License
Expand Down
10 changes: 8 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,7 @@
"url": "https://github.com/kasecato/vscode-intellij-idea-keybindings/issues"
},
"contributes": {
"keybindings": [
{
"keybindings": [{
"key": "ctrl+shift+enter",
"mac": "cmd+shift+enter",
"command": "acceptSelectedSuggestion",
Expand Down Expand Up @@ -738,6 +737,13 @@
"when": "editorHasRenameProvider && editorTextFocus && !editorReadonly",
"intellij": "Rename"
},
{
"key": "shift+f6",
"mac": "shift+f6",
"command": "editor.action.changeAll",
"when": "!editorHasRenameProvider && editorTextFocus && !editorReadonly",
"intellij": "Select All Occurrences"
},
{
"key": "shift+f6",
"mac": "shift+f6",
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 @@ -1260,6 +1260,13 @@
"when": "editorHasRenameProvider && editorTextFocus && !editorReadonly",
"intellij": "Rename"
},
{
"key": "shift+f6",
"mac": "shift+f6",
"command": "editor.action.changeAll",
"when": "!editorHasRenameProvider && editorTextFocus && !editorReadonly",
"intellij": "Select All Occurrences"
},
{
"key": "shift+f6",
"mac": "shift+f6",
Expand Down

0 comments on commit c7b0feb

Please sign in to comment.