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.
在 emacs 中,我想\C-/从撤消重新映射到我自己的函数,注释当前区域或当前行(如果没有选择区域)。当我尝试这样的事情时:
\C-/
(global-set-key "\C-/" 'comment-or-uncomment-region-or-line)
我收到一个错误
error: Invalid modifier in string
我正在尝试不同的键绑定方式,不幸的是没有成功,谷歌搜索\C-/也不是很有帮助。
感谢您的帮助。
(global-set-key (kbd "C-/") 'comment-or-uncomment-region-or-line)