在linux的terminal下可以用快捷鍵例如ctrl+u,ctrl+k, ctrl+a, ctrl+e, alt+f, alt+b等等提高工作效率。
ctrl+u 從光標(biāo)處刪除至開頭
ctrl+k 從光標(biāo)處刪除至結(jié)尾
ctrl+a 將光標(biāo)移至開頭
ctrl+e 將光標(biāo)移至結(jié)尾
ctrl+p 同方向鍵上
ctrl+n 同方向鍵下
ctrl+d 刪除光標(biāo)處字符
alt+f 將光標(biāo)移至下個單詞
alt+b 將光標(biāo)移至上個單詞
在windows的powershell下面也可以用這些快捷鍵,只需要配置powershell的profile文件即可
- 創(chuàng)建$profile文件
ni -type file -force $profile
- 打開$profile文件
notepad $profile
- 在$profile文件加入以下行
if ($host.Name -eq 'ConsoleHost')
{
Import-Module PSReadLine
Set-PSReadLineOption -EditMode Emacs
}
- 重啟powershell