Created
November 7, 2018 06:25
-
-
Save elado/febe110a1df66089df1a2cddd0c801cb to your computer and use it in GitHub Desktop.
VSCode FileUtils + File Explorer KeyBindings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"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