Emacs move around split windows in a specified direction?

后端 未结 7 1083
陌清茗
陌清茗 2020-12-17 10:38

In Terminal Emacs (no mouse), I\'m using split windows to work with multiple buffers at the same time. I\'m finding moving between the split windows much more painful than h

7条回答
  •  春和景丽
    2020-12-17 10:53

    Use window-jump, e.g.:

    ;; C-x  to switch windows
    (use-package window-jump
                 :bind (("C-x " . window-jump-up)
                        ("C-x " . window-jump-down)
                        ("C-x " . window-jump-left)
                        ("C-x " . window-jump-right)))
    

    For help with use-package, see https://github.com/jwiegley/use-package/blob/master/README.md.

提交回复
热议问题