Skip to content

Commit

Permalink
Fixed #135 navigateToLastEditLocation not released
Browse files Browse the repository at this point in the history
  • Loading branch information
kasecato committed Nov 17, 2018
1 parent db33c0b commit 7ab0188
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## 0.2.29 (Nov 17, 2018)

* bug fix - Fix cmd+n not opening new untitled file. See [#134](https://github.com/kasecato/vscode-intellij-idea-keybindings/pull/134)
* bug fix - navigateToLastEditLocation not released. See [#135](https://github.com/kasecato/vscode-intellij-idea-keybindings/issues/135)

## 0.2.28 (Oct 27, 2018)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ ctrl+alt+left | cmd+alt+left | Navigate back | ✅
| cmd+[ | Navigate back | ✅
ctrl+alt+right | cmd+alt+right | Navigate forward | ✅
| cmd+] | Navigate forward | ✅
ctrl+shift+backspace | cmd+shift+backspace | Navigate to last edit location | N/A
ctrl+shift+backspace | cmd+shift+backspace | Navigate to last edit location |
alt+f1 | alt+f1 | Select current file or symbol in any view | N/A
ctrl+b | cmd+b | Go to declaration | ✅
ctrl+alt+b | cmd+alt+b | Go to implementation(s) | ✅
Expand Down
6 changes: 6 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -563,6 +563,12 @@
"command": "workbench.action.navigateForward",
"intellij": "Navigate forward"
},
{
"key": "ctrl+shift+backspace",
"mac": "cmd+shift+backspace",
"command": "workbench.action.navigateToLastEditLocation",
"intellij": "Navigate to last edit location"
},
{
"key": "ctrl+b",
"mac": "cmd+b",
Expand Down
7 changes: 2 additions & 5 deletions src/package-with-comment.json
Original file line number Diff line number Diff line change
Expand Up @@ -900,15 +900,12 @@
"command": "workbench.action.navigateForward",
"intellij": "Navigate forward"
},
/*
{
"key": "ctrl+shift+backspace",
"mac": "cmd+shift+backspace",
"command": "",
"intellij": "Navigate to last edit location",
"todo": "N/A"
"command": "workbench.action.navigateToLastEditLocation",
"intellij": "Navigate to last edit location"
},
*/
/*
{
"key": "alt+f1",
Expand Down

0 comments on commit 7ab0188

Please sign in to comment.