VSCode 1.3 has added support for adding commands to context menus. Is there a way to identify whether a file or folder is clicked to open the explorer context menu?
https://code.visualstudio.com/docs/getstarted/keybindings#_when-clause-contexts
is file: "when": "!explorerResourceIsFolder"
"when": "!explorerResourceIsFolder"
is dir: "when": "explorerResourceIsFolder"
"when": "explorerResourceIsFolder"