all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#23303: 24.5; [PATCH] term.el doesn't support absolute column movement
@ 2016-04-16 23:09 Vasilij Schneidermann
  2016-04-21 16:01 ` Eli Zaretskii
  0 siblings, 1 reply; 2+ messages in thread
From: Vasilij Schneidermann @ 2016-04-16 23:09 UTC (permalink / raw
  To: 23303

[-- Attachment #1: Type: text/plain, Size: 302 bytes --]

While testing out a program I noticed it was misbehaving in M-x
ansi-term for the commands using the \e[0G sequence for moving the
cursor to column 0.  Apparently this is because it doesn't have any code
branch in `term-handle-ansi-escape' for this case.  I've attached a
patch to fix this deficiency.

[-- Attachment #2: 0001-Support-E-G-sequence-for-absolute-column-movement.patch --]
[-- Type: text/x-diff, Size: 927 bytes --]

From 2d089f7c2e48cb3c2e3b9edc51f095f2feffc7bd Mon Sep 17 00:00:00 2001
From: Vasilij Schneidermann <v.schneidermann@gmail.com>
Date: Sun, 17 Apr 2016 00:58:52 +0200
Subject: [PATCH] Support \E[G sequence for absolute column movement

---
 lisp/term.el | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/lisp/term.el b/lisp/term.el
index ecaca50..3bc934e 100644
--- a/lisp/term.el
+++ b/lisp/term.el
@@ -3260,6 +3260,10 @@ See `term-prompt-regexp'."
    ;; \E[D - cursor left (terminfo: cub)
    ((eq char ?D)
     (term-move-columns (- (max 1 term-terminal-parameter))))
+   ;; \E[G - cursor motion to absolute column (terminfo: hpa)
+   ((eq char ?G)
+    (term-move-columns (- (max 0 (min term-width term-terminal-parameter))
+                          (term-current-column))))
    ;; \E[J - clear to end of screen (terminfo: ed, clear)
    ((eq char ?J)
     (term-erase-in-display term-terminal-parameter))
-- 
2.8.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#23303: 24.5; [PATCH] term.el doesn't support absolute column movement
  2016-04-16 23:09 bug#23303: 24.5; [PATCH] term.el doesn't support absolute column movement Vasilij Schneidermann
@ 2016-04-21 16:01 ` Eli Zaretskii
  0 siblings, 0 replies; 2+ messages in thread
From: Eli Zaretskii @ 2016-04-21 16:01 UTC (permalink / raw
  To: Vasilij Schneidermann; +Cc: 23303-done

> Date: Sun, 17 Apr 2016 01:09:24 +0200
> From: Vasilij Schneidermann <v.schneidermann@gmail.com>
> 
> While testing out a program I noticed it was misbehaving in M-x
> ansi-term for the commands using the \e[0G sequence for moving the
> cursor to column 0.  Apparently this is because it doesn't have any code
> branch in `term-handle-ansi-escape' for this case.  I've attached a
> patch to fix this deficiency.

Thanks, installed on master.





^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-04-21 16:01 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-16 23:09 bug#23303: 24.5; [PATCH] term.el doesn't support absolute column movement Vasilij Schneidermann
2016-04-21 16:01 ` Eli Zaretskii

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.