Removed VS Code Plugin, since VS Code provides the `code` command out of

the box now.
pull/1593/head
Nils Winkler 2020-05-13 10:25:36 +02:00
parent b9b3d42793
commit 0122497e6c
No known key found for this signature in database
GPG Key ID: 317C6E70C88A89B1
1 changed files with 0 additions and 12 deletions

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