如何在文本被截断时将光标移动到emacs窗口的侧边缘?

时间:2017-11-08 11:55:23

标签: emacs

当文本被截断时,如下图所示,我想将光标移动到emacs窗口的AE边缘。有没有办法做到这一点?我使用的是emacs 25。

Emacs GUI Window

1 个答案:

答案 0 :(得分:2)

(defun move-to-right-window-edge ()
  (interactive)
  (move-to-column (+ (window-text-width) (window-hscroll))))

(defun move-to-left-window-edge ()
  (interactive)
  (move-to-column (window-hscroll)))

您可能希望使用hscroll-marginhscroll-stepauto-scroll-mode。我会推荐像

这样的东西
(setq hscroll-margin 0
      hscroll-step 1
      auto-hscroll-mode t)