Skip to content

Commit

Permalink
Add #232 that F4 open files
Browse files Browse the repository at this point in the history
  • Loading branch information
kasecato committed Feb 23, 2024
1 parent 5121dd6 commit 04c9c5a
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,7 @@ alt+right | shift+cmd+] | Select next tab (Terminal) | ✅
alt+tab | alt+tab | Goto next splitter | ✅
shift+alt+tab | shift+alt+tab | Goto previous splitter | ✅
enter | enter | Open Highlighted File (Explorer) | ✅
f4 | f4 | Open Highlighted File (Explorer) | ✅
alt+home | cmd+up | Jump to Navigation Bar | ✅
shift+ctrl+c | shift+cmd+c | Copy paths | ✅

Expand Down
9 changes: 8 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -1581,7 +1581,14 @@
"mac": "enter",
"command": "list.select",
"intellij": "Open Highlighted File (Explorer)",
"when": "explorerViewletVisible && filesExplorerFocus && !explorerResourceIsFolder"
"when": "filesExplorerFocus && foldersViewVisible && !explorerResourceIsFolder && !inputFocus"
},
{
"key": "[F4]",
"mac": "[F4]",
"command": "explorer.openAndPassFocus",
"intellij": "Open Highlighted File (Explorer)",
"when": "filesExplorerFocus && foldersViewVisible && !explorerResourceIsFolder && !inputFocus"
},
{
"key": "enter",
Expand Down
9 changes: 8 additions & 1 deletion src/package-with-comment.json
Original file line number Diff line number Diff line change
Expand Up @@ -2027,7 +2027,14 @@
"mac": "enter",
"command": "list.select",
"intellij": "Open Highlighted File (Explorer)",
"when": "explorerViewletVisible && filesExplorerFocus && !explorerResourceIsFolder"
"when": "filesExplorerFocus && foldersViewVisible && !explorerResourceIsFolder && !inputFocus"
},
{
"key": "[F4]",
"mac": "[F4]",
"command": "explorer.openAndPassFocus",
"intellij": "Open Highlighted File (Explorer)",
"when": "filesExplorerFocus && foldersViewVisible && !explorerResourceIsFolder && !inputFocus"
},
{
"key": "enter",
Expand Down

0 comments on commit 04c9c5a

Please sign in to comment.