Skip to content

Commit

Permalink
Fix #213 that quickOpen cmd+e won't work
Browse files Browse the repository at this point in the history
  • Loading branch information
kasecato committed Feb 23, 2024
1 parent 089e67a commit d9c2778
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 24 deletions.
20 changes: 8 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -873,25 +873,21 @@
{
"key": "ctrl+e",
"mac": "cmd+e",
"command": "-actions.find"
},
{
"key": "ctrl+e",
"mac": "cmd+e",
"command": "-workbench.action.openRecent"
"command": "workbench.action.quickOpen",
"when": "!inQuickOpen",
"intellij": "Recent files popup"
},
{
"key": "ctrl+e",
"mac": "cmd+e",
"command": "workbench.action.openPreviousEditorFromHistory",
"command": "workbench.action.quickOpenNavigateNextInRecentFilesPicker",
"when": "inQuickOpen"
},
{
"key": "ctrl+e",
"mac": "cmd+e",
"when": "!inQuickOpen",
"command": "workbench.action.openRecent",
"intellij": "Recent files popup"
"key": "ctrl+shift+e",
"mac": "cmd+shift+e",
"command": "workbench.action.quickOpenNavigatePreviousInRecentFilesPicker",
"when": "inQuickOpen"
},
{
"key": "ctrl+alt+[ArrowLeft]",
Expand Down
20 changes: 8 additions & 12 deletions src/package-with-comment.json
Original file line number Diff line number Diff line change
Expand Up @@ -1139,25 +1139,21 @@
{
"key": "ctrl+e",
"mac": "cmd+e",
"command": "-actions.find"
},
{
"key": "ctrl+e",
"mac": "cmd+e",
"command": "-workbench.action.openRecent"
"command": "workbench.action.quickOpen",
"when": "!inQuickOpen",
"intellij": "Recent files popup"
},
{
"key": "ctrl+e",
"mac": "cmd+e",
"command": "workbench.action.openPreviousEditorFromHistory",
"command": "workbench.action.quickOpenNavigateNextInRecentFilesPicker",
"when": "inQuickOpen"
},
{
"key": "ctrl+e",
"mac": "cmd+e",
"when": "!inQuickOpen",
"command": "workbench.action.openRecent",
"intellij": "Recent files popup"
"key": "ctrl+shift+e",
"mac": "cmd+shift+e",
"command": "workbench.action.quickOpenNavigatePreviousInRecentFilesPicker",
"when": "inQuickOpen"
},
{
"key": "ctrl+alt+[ArrowLeft]",
Expand Down

0 comments on commit d9c2778

Please sign in to comment.