Powershell PSReadLine Complete Word(History) 根据历史补全词
- 根据历史补全词(一次只补全部分)
Set-PSReadLineKeyHandler -Key "Ctrl+RightArrow" -Function ForwardWord
- 搜索历史时(↑)移动光标到行未而不是行首
Set-PSReadLineOption -HistorySearchCursorMovesToEnd
- TAB补全时提供可选择菜单
Set-PSReadLineKeyHandler -Key "Tab" -Function MenuComplete