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