]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix term.el cursor movement at bottom margin (Bug#31690)
authorNoam Postavsky <npostavs@gmail.com>
Sat, 2 Jun 2018 19:57:33 +0000 (15:57 -0400)
committerNoam Postavsky <npostavs@gmail.com>
Sun, 10 Jun 2018 21:57:50 +0000 (17:57 -0400)
* lisp/term.el (term-handle-ansi-escape) <\E[B cud>: Allow moving the
cursor to the bottom margin line, rather than stopping one line
before.

lisp/term.el
test/lisp/term-tests.el

index 419ddb2db5cf1e328019d603d69bc1a1b0ce6d07..60cd547f93dfc2db6df87d99b39ab2d1ecc024f8 100644 (file)
@@ -3387,11 +3387,10 @@ option is enabled.  See `term-set-goto-process-mark'."
    ;; \E[B - cursor down (terminfo: cud)
    ((eq char ?B)
     (let ((tcr (term-current-row)))
-      (unless (= tcr (1- term-scroll-end))
+      (unless (>= tcr term-scroll-end)
        (term-down
-        (if (> (+ tcr term-terminal-parameter) term-scroll-end)
-            (- term-scroll-end 1 tcr)
-          (max 1 term-terminal-parameter)) t))))
+         (min (- term-scroll-end tcr) (max 1 term-terminal-parameter))
+         t))))
    ;; \E[C - cursor right (terminfo: cuf, cuf1)
    ((eq char ?C)
     (term-move-columns
index 234dfa1f0d519c20d38f1f98df0baa24999dd3fe..7fd8d1293dc16bad3bc64132278ac90cf6405828 100644 (file)
@@ -124,6 +124,27 @@ line6\r
                     40 12 (list "\eAnSiTc /f" "oo/\n") 'default-directory)
                    "/foo/"))))
 
+(ert-deftest term-to-margin ()
+  "Test cursor movement at the scroll margin.
+This is a reduced example from GNU nano's initial screen."
+  (let* ((width 10)
+         (x (make-string width ?x))
+         (y (make-string width ?y)))
+    (should (equal (term-test-screen-from-input
+                    width 3
+                    `("\e[1;3r"       ; Setup 3 line scrolling region.
+                      "\e[2;1H"       ; Move to 2nd last line.
+                      ,x              ; Fill with 'x'.
+                      "\r\e[1B"       ; Next line.
+                      ,y))            ; Fill with 'y'.
+                   (concat "\n" x "\n" y)))
+    ;; Same idea, but moving upwards.
+    (should (equal (term-test-screen-from-input
+                    width 3
+                    `("\e[1;3r" "\e[2;1H" ,x "\r\e[1A" ,y))
+                   (concat y "\n" x)))))
+
+
 (provide 'term-tests)
 
 ;;; term-tests.el ends here