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.
如何让 Ctrl-Left/Right 向前/向后搜索光标下的符号?
我似乎找不到仅使用一个键就可以在符号上向前/向后搜索的方法。Spacemacs 有这个功能有一段时间了,很可能来自邪恶模式。
谢谢
原来包'highlight-symbol'有这个功能。具有讽刺意味的是,它没有突出显示搜索符号......
;; Alt-Left/Right jumps to prev/next symbol (require 'highlight-symbol) (global-set-key (kbd "<M-right>") 'highlight-symbol-next) (global-set-key (kbd "<M-left>") 'highlight-symbol-prev)