Emacs, switch to previous window

后端 未结 13 1103
你的背包
你的背包 2020-12-04 07:12

In Emacs, C-x o takes me to the next window.

What keyboard macro takes me to the previous window in Emacs?

相关标签:
13条回答
  • 2020-12-04 07:53

    There are some very good and complete answers here, but to answer the question in a minimalist fashion:

     (defun prev-window ()
       (interactive)
       (other-window -1))
    
     (define-key global-map (kbd "C-x p") 'prev-window)
    
    0 讨论(0)
提交回复
热议问题