我使用tcsh和emacs。在emacs中,我习惯于使用ctrl-left bindkey将一个单词向左移动。我想在我的tcsh终端做同样的事情。
我可以做ctrl-b,但我只是不习惯它。
我从bindkey manpath中不清楚如何指定ctrl-left组合键。
我该怎么做?
答案 0 :(得分:10)
Google会回答所有问题(如果你看得足够深)。
bindkey '^[[1;5D' backward-word # ctrl+left
bindkey '^[[1;5C' forward-word # ctrl+right
来自Google的http://lofotenmoose.info/bsd/conf/amd64/tcshrc-root缓存。
这适用于tcsh 6.13.00