diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a7e6d9..ab807f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/README.md b/README.md index f5c08a7..a1c571b 100644 --- a/README.md +++ b/README.md @@ -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) | ✅ diff --git a/package.json b/package.json index aa9221d..0318c53 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/package-with-comment.json b/src/package-with-comment.json index df170de..e3c35b7 100644 --- a/src/package-with-comment.json +++ b/src/package-with-comment.json @@ -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",