我使用 Cx 3 拆分为左右窗口。光标在左侧窗口中,我可以使用 Cn、Cp 来移动光标。我怎样才能留在左侧窗口并上下移动右侧窗口中的代码?
我以前做过,但我丢失了所有的 emacs 文件。所以我现在无法弄清楚。谢谢。
我使用 Cx 3 拆分为左右窗口。光标在左侧窗口中,我可以使用 Cn、Cp 来移动光标。我怎样才能留在左侧窗口并上下移动右侧窗口中的代码?
我以前做过,但我丢失了所有的 emacs 文件。所以我现在无法弄清楚。谢谢。
我已经用谷歌搜索了答案,回复:如何向后滚动其他窗口?CMv 转发
不过,使用scroll-other-window
函数并为其添加参数。以下是详细信息:
(defun scroll-other-window-up-line ()
"Scroll the other window one line up."
(interactive)
(scroll-other-window -1))
(defun scroll-other-window-down-line ()
"Scroll the other window one line down."
(interactive)
(scroll-other-window 1))
(global-set-key (kbd "M-p") 'scroll-other-window-up-line)
(global-set-key (kbd "M-n") 'scroll-other-window-down-line)
希望它可以提供帮助。
scroll-other-window
是你的朋友,默认绑定C-M-v
。