看網址就知道這篇是塵封已久。整理一下發文。
主要是一些從 bash shell 肌肉記憶移植過來的方便快捷鍵。
其他 windows 相關請再參考 Must-Do Setup for Programmer's New Windows PC。
實用功能
強烈建議直接到 will 保哥的文章 ( 如何打造一個華麗又實用的 PowerShell 命令輸入環境) 設定。
編輯設定檔
> notepad.exe $PROFILE
一些方便快捷鍵:
# Move
Set-PSReadlineKeyHandler -Chord ctrl+a -Function BeginningOfLine
Set-PSReadlineKeyHandler -Chord ctrl+e -Function EndOfLine
# Delete
Set-PSReadLineKeyHandler -Chord Ctrl+u -Function RevertLine
Set-PSReadLineKeyHandler -Chord Ctrl+k -Function DeleteToEnd
Set-PSReadlineKeyHandler -Chord ctrl+w -Function BackwardDeleteWord # one word
# History Search
Set-PSReadlineKeyHandler -Key UpArrow -Function HistorySearchBackward
Set-PSReadlineKeyHandler -Key DownArrow -Function HistorySearchForward
Set-PSReadLineOption -HistorySearchCursorMovesToEnd
完整設定 (已安裝 oh-my-posh 以及 nerd-fonts 字型): windows/PowerShell/Microsoft.PowerShell_profile.ps1