Delete vscode_init_args.cmd

This commit is contained in:
Dax T Games 2020-07-23 08:43:09 -04:00 committed by GitHub
parent 97a41ddd99
commit fdcbd6df87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,64 +0,0 @@
@echo off
:: Below are the default Cmder session settings:
::
:: See "%CMDER_ROOT%\README.md" for details on these settings.
::
:: `Cmder.exe` Arguments:
:: ----------------------
::
:: `/c [cmder_user_cfg_root]`
:: NOT USED BY DEFAULT
:: cmder_user_bin=[cmder_user_cfg_root]\bin
:: cmder_user_config=[cmder_user_cfg_root]\config
::
:: `init.bat` Arguments
:: --------------------
::
:: `/d`
:: debug_output=0
::
:: `/v`
:: verbose_output=0
::
:: `/f`
:: fast_init=0
::
:: `/nix_tools`
:: nix_tools=1
::
:: `/t`
:: time_init=0
::
:: `/max_depth`
:: max_depth=1
::
:: `/user_aliases`
:: user_aliases=
::
:: `/git_install_root`
:: GIT_INSTALL_ROOT=
::
:: `/home`
:: HOME=
::
:: `/svn_ssh`
:: SVN_SSH=
echo Applying Cmder VSCode settings from '%~0'...
if defined CMDER_CONFIGURED (
:: Set Cmder settings here for when VSCode is launched inside Cmder.
set CMDER_CONFIGURED=2
) else (
:: Set Cmder settings here for when VSCode is launched from outside Cmder.
set nix_tools=0
set fast_init=1
set cmder_user_bin=c:\users\dtgam\cmder\bin
set cmder_user_config=c:\users\dtgam\cmder\config
)
set verbose_output=1
:: Set all required Cmder VSCode terminal environment settings above this line.
echo Applying Cmder VSCode settings is complete!