Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 ansi-term 的 char 模式上添加一些键绑定,但我还不能……你有什么建议吗?有可能吗?
显然,我所有的键绑定都可以在行模式下正常工作,但是如何在 char 模式下启用一些键绑定(不是全部)?
ansi-term实际上使用了两种不同的模式
对于字符模式,您需要修改term-raw-map, 如下所示:
term-raw-map
(define-key term-raw-map [(control ?a)] 'term-send-raw)
将 \Ca 发送到底层终端。我不知道 line-mode 的 key-map 是什么,但我猜你想玩的是字符模式。