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-t
to open your TODO list, but have different files per project, you can bind the keyboard shortcut to thetodo
keyword, 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 propertieskeyword
file
"quickfiles.keywordFiles": [
{
"keyword": "readme",
"file": "${workspaceFolder}/README.md"
},
{
"keyword": "todo",
"file": "${workspaceFolder}/Todo.md"
},
]
Initial release
Support VSCode 1.50.0