Merge pull request #1593 from nwinkler/remove-vs-code-plugin

Removed VS Code Plugin, since VS Code provides the `code` command out of the box now
This commit is contained in:
Nils Winkler
2020-05-13 10:26:56 +02:00
committed by GitHub

View File

@@ -1,12 +0,0 @@
cite about-plugin
about-plugin 'Defines the `code` executable for Visual Studio Code on OS X'
# Based on https://code.visualstudio.com/Docs/editor/setup
if [[ `uname -s` == "Darwin" ]]; then
function code () {
about 'Starts Visual Studio Code in the provided directory'
group 'visual-studio-code'
VSCODE_CWD="$PWD" open -n -b "com.microsoft.VSCode" --args $* ;
}
fi