我发现使用ctrl-arrow非常方便地跳过单词的可能性。
但是,由于某种原因,空间之后的特殊字符使得跳跃省略了空间。例如(箭头之间按下ctrl+left
,|
表示光标位置)
command -flag /home/path| -> command -flag /home/|path -> command -flag /|home/path
-> command -|flag /home/path -> |command -flag /home/path
这种行为让我很烦恼 - 你知道如何设置它以使光标停在每个单词的开头,包括特殊字符吗?
预期行为示例:
command -flag /home/path| -> command -flag /home|/path -> command -flag |/home/path
-> command |-flag /home/path -> |command -flag /home/path
我个人使用zsh + linux,但希望存在独立于OS / shell的解决方案。