Skip to content

Commit

Permalink
【更新】更新clink 工具,修复win11上方向键历史命令无效的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
wangqinglin authored and mysterywolf committed Aug 14, 2023
1 parent 8d98ada commit 5f4ce34
Show file tree
Hide file tree
Showing 24 changed files with 11,008 additions and 4,240 deletions.
1,972 changes: 1,972 additions & 0 deletions tools/ConEmu/ConEmu/clink/CHANGES

Large diffs are not rendered by default.

13 changes: 13 additions & 0 deletions tools/ConEmu/ConEmu/clink/_default_inputrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# When this file is named "default_inputrc" and is in the binaries
# directory or profile directory, it provides enhanced default settings.

# Override the built-in Readline defaults with ones that provide a more
# enhanced Clink experience.

colored-completion-prefix on
colored-stats on
mark-symlinked-directories on
completion-auto-query-items on
history-point-at-end-of-anchored-search on
search-ignore-case on

34 changes: 34 additions & 0 deletions tools/ConEmu/ConEmu/clink/_default_settings
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# When this file is named "default_settings" and is in the binaries
# directory or profile directory, it provides enhanced default settings.

# Override built-in default settings with ones that provide a more
# enhanced Clink experience.

autosuggest.enable = True
clink.default_bindings = windows
cmd.ctrld_exits = False
color.arginfo = sgr 38;5;172
color.argmatcher = sgr 1;38;5;40
color.cmd = bold
color.cmdredir = sgr 38;5;172
color.cmdsep = sgr 38;5;214
color.comment_row = sgr 38;5;87;48;5;18
color.description = sgr 38;5;39
color.doskey = sgr 1;38;5;75
color.executable = sgr 1;38;5;33
color.filtered = bold
color.flag = sgr 38;5;117
color.hidden = sgr 38;5;160
color.histexpand = sgr 97;48;5;55
color.horizscroll = sgr 38;5;16;48;5;30
color.input = sgr 38;5;222
color.readonly = sgr 38;5;28
color.selected_completion = sgr 7
color.selection = sgr 38;5;16;48;5;179
color.suggestion = sgr 38;5;239
color.unrecognized = sgr 38;5;203
history.max_lines = 25000
history.time_stamp = show
match.expand_envvars = True
match.substring = True

55 changes: 29 additions & 26 deletions tools/ConEmu/ConEmu/clink/clink.bat
Original file line number Diff line number Diff line change
@@ -1,47 +1,47 @@
:: Copyright (c) 2012 Martin Ridgers
::
:: Permission is hereby granted, free of charge, to any person obtaining a copy
:: of this software and associated documentation files (the "Software"), to deal
:: in the Software without restriction, including without limitation the rights
:: to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
:: copies of the Software, and to permit persons to whom the Software is
:: furnished to do so, subject to the following conditions:
::
:: The above copyright notice and this permission notice shall be included in
:: all copies or substantial portions of the Software.
::
:: THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
:: IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
:: FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
:: AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
:: LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
:: OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
:: SOFTWARE.
:: License: http://opensource.org/licenses/MIT

@echo off
setlocal enableextensions
set clink_profile_arg=
set clink_quiet_arg=

:: Mimic cmd.exe's behaviour when starting from the start menu.
if /i "%1"=="startmenu" (
if /i "%~1"=="startmenu" (
cd /d "%userprofile%"
shift /1
shift
)

:: Check for the --profile option.
if /i "%1"=="--profile" (
if /i "%~1"=="--profile" (
set clink_profile_arg=--profile "%~2"
shift /1
shift /1
shift
shift
)

:: Check for the --quiet option.
if /i "%~1"=="--quiet" (
set clink_quiet_arg= --quiet
shift
)

:: If the .bat is run without any arguments, then start a cmd.exe instance.
if "%1"=="" (
if _%1==_ (
call :launch
goto :end
)

:: Test for autorun.
if defined CLINK_NOAUTORUN if /i "%~1"=="inject" if /i "%~2"=="--autorun" goto :end

:: Endlocal before inject tags the prompt.
endlocal

:: Pass through to appropriate loader.
if /i "%processor_architecture%"=="x86" (
"%~dp0\clink_x86.exe" %*
) else if /i "%processor_architecture%"=="arm64" (
"%~dp0\clink_arm64.exe" %*
) else if /i "%processor_architecture%"=="amd64" (
if defined processor_architew6432 (
"%~dp0\clink_x86.exe" %*
Expand All @@ -51,10 +51,13 @@ if /i "%processor_architecture%"=="x86" (
)

:end
set clink_profile_arg=
goto :eof

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:launch
start "Clink" cmd.exe /s /k ""%~dpnx0" inject %clink_profile_arg%"
setlocal
set WT_PROFILE_ID=
set WT_SESSION=
start "Clink" cmd.exe /s /k ""%~dpnx0" inject %clink_profile_arg%%clink_quiet_arg%"
endlocal
exit /b 0
9,679 changes: 8,956 additions & 723 deletions tools/ConEmu/ConEmu/clink/clink.html

Large diffs are not rendered by default.

Binary file added tools/ConEmu/ConEmu/clink/clink.ico
Binary file not shown.
Loading

0 comments on commit 5f4ce34

Please sign in to comment.