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
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.