Commands for opening specific files, particularly useful for configuring keyboard shortcuts.
quickfiles.openFile- Open a specific filequickfiles.openKeywordFile- Open a file using a keyword from settings. See Extension Settings section for settings config- This helps with keyboard shortcuts, since they're configured per-user, not per-workspace. If you want
ctl-tto open your TODO list, but have different files per project, you can bind the keyboard shortcut to thetodokeyword, then bind the keyword to different files in your per-workspace settings.
- This helps with keyboard shortcuts, since they're configured per-user, not per-workspace. If you want
The following variables are supported in file paths:
${workspaceFolder}
quickfiles.keywordFiles- array of keyword file objects, which have the following propertieskeywordfile
"quickfiles.keywordFiles": [
{
"keyword": "readme",
"file": "${workspaceFolder}/README.md"
},
{
"keyword": "todo",
"file": "${workspaceFolder}/Todo.md"
},
]
Initial release
Support VSCode 1.50.0