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.
我想分别映射j k邪恶的gj运动gk。这是人们通常在 vim 中进行的常见重新映射。我怎样才能在 Emacs 中做到这一点。我想我只需要找到这些对应gj和gk运动的 Evil 函数是如何命名的。
j
k
gj
gk
您正在寻找的功能是evil-next-visual-line和evil-previous-visual-line。您可以使用以下方式绑定它们:
evil-next-visual-line
evil-previous-visual-line
(define-key evil-normal-state-map (kbd "j") 'evil-next-visual-line) (define-key evil-normal-state-map (kbd "k") 'evil-previous-visual-line)