Skip to content

Commit

Permalink
Merge pull request #327 from kasecato/#213/quickOpen
Browse files Browse the repository at this point in the history
Fix #213 that quickOpen cmd+e won't work
  • Loading branch information
kasecato authored Feb 23, 2024
2 parents 089e67a + d9c2778 commit 7756f15
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 7756f15

Please sign in to comment.