Skip to content

Commit a0ddd5c

Browse files
authored
Merge pull request alefragnani#839 from zobweyt/patch-1
docs: add `workbench.action.quickOpenSelectPrevious` command key binding to keyboard focused users section in the README
2 parents 2df3920 + 92747fb commit a0ddd5c

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

README.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,10 +131,25 @@ If you are a keyboard focused user and uses _Vim like_ keyboard navigation, you
131131
Just use the `when` clause `"inProjectManagerList"`, like:
132132

133133
```json
134+
{
135+
"key": "cmd+j",
136+
"command": "workbench.action.quickOpenSelectNext",
137+
"when": "inProjectManagerList && isMac"
138+
},
139+
{
140+
"key": "cmd+shift+j",
141+
"command": "workbench.action.quickOpenSelectPrevious",
142+
"when": "inProjectManagerList && isMac"
143+
},
134144
{
135145
"key": "ctrl+j",
136146
"command": "workbench.action.quickOpenSelectNext",
137-
"when": "inProjectManagerList"
147+
"when": "inProjectManagerList && (isWindows || isLinux)"
148+
},
149+
{
150+
"key": "ctrl+shift+j",
151+
"command": "workbench.action.quickOpenSelectPrevious",
152+
"when": "inProjectManagerList && (isWindows || isLinux)"
138153
}
139154
```
140155

0 commit comments

Comments
 (0)