Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add #232 that F4 open files #331

Merged
merged 1 commit into from
Feb 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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