Skip to content

Instantly share code, notes, and snippets.

@elado
Created November 7, 2018 06:25
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elado/febe110a1df66089df1a2cddd0c801cb to your computer and use it in GitHub Desktop.
Save elado/febe110a1df66089df1a2cddd0c801cb to your computer and use it in GitHub Desktop.
VSCode FileUtils + File Explorer KeyBindings
[
{
"key": "d",
"command": "fileutils.duplicateFile",
"when": "explorerViewletVisible && filesExplorerFocus && !inputFocus"
},
{
"key": "r",
"command": "fileutils.moveFile",
"when": "explorerViewletVisible && filesExplorerFocus && !inputFocus"
},
{
"key": "n",
"command": "fileutils.newFile",
"when": "explorerViewletVisible && filesExplorerFocus && !inputFocus"
},
{
"key": "a",
"command": "fileutils.newFile",
"when": "explorerViewletVisible && filesExplorerFocus && !inputFocus"
},
{
"key": "shift+n",
"command": "fileutils.newFolder",
"when": "explorerViewletVisible && filesExplorerFocus && !inputFocus"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment