From a93fff6798ad5b4b7c4eda1d933cc8578cf24462 Mon Sep 17 00:00:00 2001 From: Dax T Games Date: Sun, 17 Mar 2019 15:09:02 -0400 Subject: [PATCH 1/3] Update init.bat --- vendor/init.bat | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/vendor/init.bat b/vendor/init.bat index 20676f6..5cc29ab 100644 --- a/vendor/init.bat +++ b/vendor/init.bat @@ -51,9 +51,7 @@ call "%cmder_root%\vendor\lib\lib_profile" ) else if /i "%1"=="/v" ( set verbose_output=1 ) else if /i "%1"=="/d" ( - if not defined VSCODE_CWD ( - set debug_output=1 - ) + set debug_output=1 ) else if /i "%1" == "/max_depth" ( if "%~2" geq "1" if "%~2" leq "5" ( set "max_depth=%~2" From 280bbfff1fd7e938bfe6e11f42cec6d8a8a74178 Mon Sep 17 00:00:00 2001 From: David Refoua Date: Thu, 21 Mar 2019 01:27:13 +0330 Subject: [PATCH 2/3] update issue template (#2062) --- .github/issue_template.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/issue_template.md b/.github/issue_template.md index 21b489a..2806b29 100644 --- a/.github/issue_template.md +++ b/.github/issue_template.md @@ -44,6 +44,11 @@ (Be sure to also check “Closed” issues in the labels section!) + • If you have a request to provide auto-complete support for a new tool, + please post your request here: + + https://github.com/vladimir-kotikov/clink-completions/issues + • If you are having an issue with any of the **upstream technologies** that are used by Cmder, please make sure that the issue is reproducible _only_ when used in combination with Cmder. @@ -52,9 +57,9 @@ - Clink, the default shell in Cmder - ConEmu, the terminal emulator - Git/MinGW, which also provide *NIX tools - - clink-completions, which provide autocomplete + - clink-completions, which provide autocompletion - The issues related to upstream technologies are marked as 👆 [name]. + The issues related to upstream technologies are labeled as 👆 [name]. We'll try our best to help you -- but we recommend creating an issue specifically at each of the corresponding repositories for the best @@ -78,7 +83,7 @@ + + ### Description of the issue From 081624d88e3bac96306451b1751b5c01c3c0cbde Mon Sep 17 00:00:00 2001 From: "Dax T. Games" Date: Sat, 23 Mar 2019 15:03:44 -0400 Subject: [PATCH 3/3] cleanup --- vendor/profile.ps1 | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/vendor/profile.ps1 b/vendor/profile.ps1 index 498bdc0..53b4e5a 100644 --- a/vendor/profile.ps1 +++ b/vendor/profile.ps1 @@ -25,7 +25,7 @@ if (! $ENV:CMDER_ROOT ) { # Remove trailing '\' $ENV:CMDER_ROOT = (($ENV:CMDER_ROOT).trimend("\")) -# do not load bundled psget if a module installer is already available +# Do not load bundled psget if a module installer is already available # -> recent PowerShell versions include PowerShellGet out of the box $moduleInstallerAvailable = [bool](Get-Command -Name 'Install-Module' -ErrorAction SilentlyContinue) @@ -91,11 +91,6 @@ if (Get-Module PSReadline -ErrorAction "SilentlyContinue") { # Enhance Path $env:Path = "$Env:CMDER_ROOT\bin;$Env:CMDER_ROOT\vendor\bin;$env:Path;$Env:CMDER_ROOT" -# -# Prompt Section -# Users should modify their user_profile.ps1 as it will be safe from updates. -# - # Drop *.ps1 files into "$ENV:CMDER_ROOT\config\profile.d" # to source them at startup. if (-not (test-path "$ENV:CMDER_ROOT\config\profile.d")) { @@ -160,6 +155,11 @@ if (! (Test-Path $CmderUserProfilePath) ) { Copy-Item "$env:CMDER_ROOT\vendor\user_profile.ps1.default" -Destination $CmderUserProfilePath } +# +# Prompt Section +# Users should modify their user_profile.ps1 as it will be safe from updates. +# + # Only set the prompt if it is currently set to the default # This allows users to configure the prompt in their user_profile.ps1 or config\profile.d\*.ps1 if ( $(get-command prompt).Definition -match 'PS \$\(\$executionContext.SessionState.Path.CurrentLocation\)\$\(' -and `