末尾Set-PSReadLineOption -HistorySearchCursorMovesToEnd# 设置 Tab 为菜单补全和 IntellisenseSet-PSReadLineKeyHandler -Key"Tab"-Function MenuComplete# 回到行首/行尾Set-PSReadlineKeyHandler -Key"Ctrl+a"-Function BeginningOfLineSet-PSReadlineKeyHandler -Key"Ctrl+e"-Function EndOfLine# auto suggestions#...
Oh My Posh是一个自定义的提示引擎,适用于任何shell,能够用函数或变量调整提示字符串。 传统上,提示工具是通过每个主题的自定义脚本(就像Oh My Posh 2那样)或大量的CLI配置开关来定义它的外观。对于Oh My Posh,我想从一个单一的配置文件开始,可以很容易地在任何地方共享,消除了真正掌握下面发生的事情的需要。 当...
Set-PSReadLineOption -PredictionSource History 重启powershell,就可以获得oh-my-zsh里zsh-autosuggestions一样的体验了。Autosuggestion除了可以使用→键补全全部外,还可以使用option + →选择下一个单词,现在为powershell配置同样的功能,修改$PROFILE如下: # powershell初始化加载 PSReadLine 模块 Import-Module PSReadL...
首先是 oh-my-zsh 自带的 alias 插件,这些东西能让你在终端少打很多字: 1. git 定义了有关 git 的 alias。常用的有 gaa = git add --all gcmsg =… Windows Terminal美化(oh-my-posh3) 下一个时间戳 更新2022/6/20 新方法如下 1.直接在微软商店搜索oh my posh下载(同时若没有Windows Terminal的可...
https://github.com/ohmyzsh/ohmyzsh/blob/master/lib/history.zsh## History command configuration setopt extended_history # record timestamp of command in HISTFILE setopt hist_expire_dups_first # delete duplicates first when HISTFILE size exceeds HISTSIZE setopt hist_ignore_dups # ignore duplicated ...