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
pull/1596/head
Nils Winkler 2020-05-13 10:26:56 +02:00 committed by GitHub
commit f0dcf69857
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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