Mercurial > emacs
annotate lisp/xt-mouse.el @ 92826:416592e7d882
Move variable declarations where they are needed.
(diary-bahai-date): Move to end.
(generated-autoload-file): Don't set, instead use different values of
generate-autoload-cookie plus Makefile rules to allow for a mixture of
internal calendar autoloads and normal autoloads.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Thu, 13 Mar 2008 05:40:02 +0000 |
parents | 107ccd98fa12 |
children | 606f2d163a64 470ea273abbf |
rev | line source |
---|---|
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
38178
diff
changeset
|
1 ;;; xt-mouse.el --- support the mouse when emacs run in an xterm |
14169 | 2 |
64762
41bb365f41c4
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64091
diff
changeset
|
3 ;; Copyright (C) 1994, 2000, 2001, 2002, 2003, |
79721 | 4 ;; 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. |
13163 | 5 |
17982 | 6 ;; Author: Per Abrahamsen <abraham@dina.kvl.dk> |
13163 | 7 ;; Keywords: mouse, terminals |
8 | |
14169 | 9 ;; This file is part of GNU Emacs. |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
13163 | 12 ;; it under the terms of the GNU General Public License as published by |
78236
9355f9b7bbff
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
77809
diff
changeset
|
13 ;; the Free Software Foundation; either version 3, or (at your option) |
13163 | 14 ;; any later version. |
14169 | 15 |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
13163 | 17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
14169 | 20 |
13163 | 21 ;; You should have received a copy of the GNU General Public License |
14169 | 22 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64091 | 23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
24 ;; Boston, MA 02110-1301, USA. | |
13163 | 25 |
27803 | 26 ;;; Commentary: |
13163 | 27 |
59594
7ce4342aac7f
(xterm-mouse-event): Set new optional fourth arg in
Nick Roberts <nickrob@snap.net.nz>
parents:
59531
diff
changeset
|
28 ;; Enable mouse support when running inside an xterm. |
13163 | 29 |
30 ;; This is actually useful when you are running X11 locally, but is | |
31 ;; working on remote machine over a modem line or through a gateway. | |
32 | |
33 ;; It works by translating xterm escape codes into generic emacs mouse | |
34 ;; events so it should work with any package that uses the mouse. | |
35 | |
14750 | 36 ;; You don't have to turn off xterm mode to use the normal xterm mouse |
37 ;; functionality, it is still available by holding down the SHIFT key | |
38 ;; when you press the mouse button. | |
39 | |
13163 | 40 ;;; Todo: |
41 | |
42 ;; Support multi-click -- somehow. | |
43 | |
27803 | 44 ;;; Code: |
13163 | 45 |
80899
955868b1755c
(xterm-mouse-debug-buffer): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
76924
diff
changeset
|
46 (defvar xterm-mouse-debug-buffer nil) |
13163 | 47 |
13920
3a5b5eeba5b5
(xterm-mouse-translate, xterm-mouse-event):
Richard M. Stallman <rms@gnu.org>
parents:
13500
diff
changeset
|
48 (defvar xterm-mouse-last) |
3a5b5eeba5b5
(xterm-mouse-translate, xterm-mouse-event):
Richard M. Stallman <rms@gnu.org>
parents:
13500
diff
changeset
|
49 |
59497
255a31569c3f
(xterm-mouse-translate, xterm-mouse-event): Enable
Nick Roberts <nickrob@snap.net.nz>
parents:
58875
diff
changeset
|
50 ;; Mouse events symbols must have an 'event-kind property with |
255a31569c3f
(xterm-mouse-translate, xterm-mouse-event): Enable
Nick Roberts <nickrob@snap.net.nz>
parents:
58875
diff
changeset
|
51 ;; the value 'mouse-click. |
76924
44b6d7a1ef55
(xterm-mouse-event): Don't use the left edge of the
Nick Roberts <nickrob@snap.net.nz>
parents:
76660
diff
changeset
|
52 (dolist (event-type '(mouse-1 mouse-2 mouse-3 |
44b6d7a1ef55
(xterm-mouse-event): Don't use the left edge of the
Nick Roberts <nickrob@snap.net.nz>
parents:
76660
diff
changeset
|
53 M-down-mouse-1 M-down-mouse-2 M-down-mouse-3)) |
59497
255a31569c3f
(xterm-mouse-translate, xterm-mouse-event): Enable
Nick Roberts <nickrob@snap.net.nz>
parents:
58875
diff
changeset
|
54 (put event-type 'event-kind 'mouse-click)) |
255a31569c3f
(xterm-mouse-translate, xterm-mouse-event): Enable
Nick Roberts <nickrob@snap.net.nz>
parents:
58875
diff
changeset
|
55 |
13163 | 56 (defun xterm-mouse-translate (event) |
27803 | 57 "Read a click and release event from XTerm." |
13163 | 58 (save-excursion |
59 (save-window-excursion | |
60 (deactivate-mark) | |
13920
3a5b5eeba5b5
(xterm-mouse-translate, xterm-mouse-event):
Richard M. Stallman <rms@gnu.org>
parents:
13500
diff
changeset
|
61 (let* ((xterm-mouse-last) |
13500
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
62 (down (xterm-mouse-event)) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
63 (down-command (nth 0 down)) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
64 (down-data (nth 1 down)) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
65 (down-where (nth 1 down-data)) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
66 (down-binding (key-binding (if (symbolp down-where) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
67 (vector down-where down-command) |
38563
75f49513b989
(xterm-mouse-event): Recognize control sequences
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
68 (vector down-command)))) |
75f49513b989
(xterm-mouse-event): Recognize control sequences
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
69 (is-click (string-match "^mouse" (symbol-name (car down))))) |
49597
e88404e8f2cf
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46836
diff
changeset
|
70 |
38563
75f49513b989
(xterm-mouse-event): Recognize control sequences
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
71 (unless is-click |
75f49513b989
(xterm-mouse-event): Recognize control sequences
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
72 (unless (and (eq (read-char) ?\e) |
75f49513b989
(xterm-mouse-event): Recognize control sequences
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
73 (eq (read-char) ?\[) |
75f49513b989
(xterm-mouse-event): Recognize control sequences
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
74 (eq (read-char) ?M)) |
75f49513b989
(xterm-mouse-event): Recognize control sequences
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
75 (error "Unexpected escape sequence from XTerm"))) |
75f49513b989
(xterm-mouse-event): Recognize control sequences
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
76 |
75f49513b989
(xterm-mouse-event): Recognize control sequences
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
77 (let* ((click (if is-click down (xterm-mouse-event))) |
85416
58c70d072b21
Don't change the global function-key-map anny more.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84769
diff
changeset
|
78 ;; (click-command (nth 0 click)) |
13500
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
79 (click-data (nth 1 click)) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
80 (click-where (nth 1 click-data))) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
81 (if (memq down-binding '(nil ignore)) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
82 (if (and (symbolp click-where) |
59497
255a31569c3f
(xterm-mouse-translate, xterm-mouse-event): Enable
Nick Roberts <nickrob@snap.net.nz>
parents:
58875
diff
changeset
|
83 (consp click-where)) |
13500
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
84 (vector (list click-where click-data) click) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
85 (vector click)) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
86 (setq unread-command-events |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
87 (if (eq down-where click-where) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
88 (list click) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
89 (list |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
90 ;; Cheat `mouse-drag-region' with move event. |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
91 (list 'mouse-movement click-data) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
92 ;; Generate a drag event. |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
93 (if (symbolp down-where) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
94 0 |
27803 | 95 (list (intern (format "drag-mouse-%d" |
96 (+ 1 xterm-mouse-last))) | |
59497
255a31569c3f
(xterm-mouse-translate, xterm-mouse-event): Enable
Nick Roberts <nickrob@snap.net.nz>
parents:
58875
diff
changeset
|
97 down-data click-data))))) |
80899
955868b1755c
(xterm-mouse-debug-buffer): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
76924
diff
changeset
|
98 (if xterm-mouse-debug-buffer |
955868b1755c
(xterm-mouse-debug-buffer): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
76924
diff
changeset
|
99 (print unread-command-events xterm-mouse-debug-buffer)) |
13500
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
100 (if (and (symbolp down-where) |
59497
255a31569c3f
(xterm-mouse-translate, xterm-mouse-event): Enable
Nick Roberts <nickrob@snap.net.nz>
parents:
58875
diff
changeset
|
101 (consp down-where)) |
13500
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
102 (vector (list down-where down-data) down) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
103 (vector down)))))))) |
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
104 |
83369
d2e0850b17f2
Make xt-mouse.el multi-tty-compatible.
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
105 ;; These two variables have been converted to terminal parameters. |
d2e0850b17f2
Make xt-mouse.el multi-tty-compatible.
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
106 ;; |
d2e0850b17f2
Make xt-mouse.el multi-tty-compatible.
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
107 ;;(defvar xterm-mouse-x 0 |
d2e0850b17f2
Make xt-mouse.el multi-tty-compatible.
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
108 ;; "Position of last xterm mouse event relative to the frame.") |
d2e0850b17f2
Make xt-mouse.el multi-tty-compatible.
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
109 ;; |
d2e0850b17f2
Make xt-mouse.el multi-tty-compatible.
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
110 ;;(defvar xterm-mouse-y 0 |
d2e0850b17f2
Make xt-mouse.el multi-tty-compatible.
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
111 ;; "Position of last xterm mouse event relative to the frame.") |
13500
5de4c8a3f702
(global-map): Removed bindings of down events to ignore.
Richard M. Stallman <rms@gnu.org>
parents:
13163
diff
changeset
|
112 |
76658
384739d4e5e7
(xt-mouse-epoch): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
76657
diff
changeset
|
113 (defvar xt-mouse-epoch nil) |
384739d4e5e7
(xt-mouse-epoch): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents:
76657
diff
changeset
|
114 |
23823
d60ff4432412
(xterm-mouse-mode): Pacify the byte compiler.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
21270
diff
changeset
|
115 ;; Indicator for the xterm-mouse mode. |
d60ff4432412
(xterm-mouse-mode): Pacify the byte compiler.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
21270
diff
changeset
|
116 |
27803 | 117 (defun xterm-mouse-position-function (pos) |
118 "Bound to `mouse-position-function' in XTerm mouse mode." | |
83369
d2e0850b17f2
Make xt-mouse.el multi-tty-compatible.
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
119 (when (terminal-parameter nil 'xterm-mouse-x) |
d2e0850b17f2
Make xt-mouse.el multi-tty-compatible.
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
120 (setcdr pos (cons (terminal-parameter nil 'xterm-mouse-x) |
d2e0850b17f2
Make xt-mouse.el multi-tty-compatible.
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
121 (terminal-parameter nil 'xterm-mouse-y)))) |
27803 | 122 pos) |
13163 | 123 |
50478
4c84e707a287
(xterm-mouse-event-read): New function.
Francesco Potortì <pot@gnu.org>
parents:
49597
diff
changeset
|
124 ;; read xterm sequences above ascii 127 (#x7f) |
4c84e707a287
(xterm-mouse-event-read): New function.
Francesco Potortì <pot@gnu.org>
parents:
49597
diff
changeset
|
125 (defun xterm-mouse-event-read () |
4c84e707a287
(xterm-mouse-event-read): New function.
Francesco Potortì <pot@gnu.org>
parents:
49597
diff
changeset
|
126 (let ((c (read-char))) |
4c84e707a287
(xterm-mouse-event-read): New function.
Francesco Potortì <pot@gnu.org>
parents:
49597
diff
changeset
|
127 (if (< c 0) |
4c84e707a287
(xterm-mouse-event-read): New function.
Francesco Potortì <pot@gnu.org>
parents:
49597
diff
changeset
|
128 (+ c #x8000000 128) |
4c84e707a287
(xterm-mouse-event-read): New function.
Francesco Potortì <pot@gnu.org>
parents:
49597
diff
changeset
|
129 c))) |
4c84e707a287
(xterm-mouse-event-read): New function.
Francesco Potortì <pot@gnu.org>
parents:
49597
diff
changeset
|
130 |
77809
20f40276359e
(xterm-mouse-truncate-wrap): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
76924
diff
changeset
|
131 (defun xterm-mouse-truncate-wrap (f) |
20f40276359e
(xterm-mouse-truncate-wrap): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
76924
diff
changeset
|
132 "Truncate with wrap-around." |
20f40276359e
(xterm-mouse-truncate-wrap): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
76924
diff
changeset
|
133 (condition-case nil |
20f40276359e
(xterm-mouse-truncate-wrap): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
76924
diff
changeset
|
134 ;; First try the built-in truncate, in case there's no overflow. |
20f40276359e
(xterm-mouse-truncate-wrap): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
76924
diff
changeset
|
135 (truncate f) |
20f40276359e
(xterm-mouse-truncate-wrap): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
76924
diff
changeset
|
136 ;; In case of overflow, do wraparound by hand. |
20f40276359e
(xterm-mouse-truncate-wrap): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
76924
diff
changeset
|
137 (range-error |
20f40276359e
(xterm-mouse-truncate-wrap): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
76924
diff
changeset
|
138 ;; In our case, we wrap around every 3 days or so, so if we assume |
20f40276359e
(xterm-mouse-truncate-wrap): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
76924
diff
changeset
|
139 ;; a maximum of 65536 wraparounds, we're safe for a couple years. |
20f40276359e
(xterm-mouse-truncate-wrap): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
76924
diff
changeset
|
140 ;; Using a power of 2 makes rounding errors less likely. |
20f40276359e
(xterm-mouse-truncate-wrap): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
76924
diff
changeset
|
141 (let* ((maxwrap (* 65536 2048)) |
20f40276359e
(xterm-mouse-truncate-wrap): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
76924
diff
changeset
|
142 (dbig (truncate (/ f maxwrap))) |
20f40276359e
(xterm-mouse-truncate-wrap): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
76924
diff
changeset
|
143 (fdiff (- f (* 1.0 maxwrap dbig)))) |
20f40276359e
(xterm-mouse-truncate-wrap): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
76924
diff
changeset
|
144 (+ (truncate fdiff) (* maxwrap dbig)))))) |
20f40276359e
(xterm-mouse-truncate-wrap): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
76924
diff
changeset
|
145 |
13163 | 146 (defun xterm-mouse-event () |
27803 | 147 "Convert XTerm mouse event to Emacs mouse event." |
50478
4c84e707a287
(xterm-mouse-event-read): New function.
Francesco Potortì <pot@gnu.org>
parents:
49597
diff
changeset
|
148 (let* ((type (- (xterm-mouse-event-read) #o40)) |
4c84e707a287
(xterm-mouse-event-read): New function.
Francesco Potortì <pot@gnu.org>
parents:
49597
diff
changeset
|
149 (x (- (xterm-mouse-event-read) #o40 1)) |
4c84e707a287
(xterm-mouse-event-read): New function.
Francesco Potortì <pot@gnu.org>
parents:
49597
diff
changeset
|
150 (y (- (xterm-mouse-event-read) #o40 1)) |
76659
750eeee3d77a
*** empty log message ***
Nick Roberts <nickrob@snap.net.nz>
parents:
76658
diff
changeset
|
151 ;; Emulate timestamp information. This is accurate enough |
750eeee3d77a
*** empty log message ***
Nick Roberts <nickrob@snap.net.nz>
parents:
76658
diff
changeset
|
152 ;; for default value of mouse-1-click-follows-link (450msec). |
77809
20f40276359e
(xterm-mouse-truncate-wrap): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
76924
diff
changeset
|
153 (timestamp (xterm-mouse-truncate-wrap |
81072
ecb305fe2f17
(xterm-mouse-truncate-wrap): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
80899
diff
changeset
|
154 (* 1000 |
ecb305fe2f17
(xterm-mouse-truncate-wrap): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
80899
diff
changeset
|
155 (- (float-time) |
ecb305fe2f17
(xterm-mouse-truncate-wrap): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
80899
diff
changeset
|
156 (or xt-mouse-epoch |
ecb305fe2f17
(xterm-mouse-truncate-wrap): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
80899
diff
changeset
|
157 (setq xt-mouse-epoch (float-time))))))) |
ecb305fe2f17
(xterm-mouse-truncate-wrap): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
80899
diff
changeset
|
158 (mouse (intern |
38563
75f49513b989
(xterm-mouse-event): Recognize control sequences
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
159 ;; For buttons > 3, the release-event looks |
75f49513b989
(xterm-mouse-event): Recognize control sequences
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
160 ;; differently (see xc/programs/xterm/button.c, |
75f49513b989
(xterm-mouse-event): Recognize control sequences
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
161 ;; function EditorButton), and there seems to come in |
75f49513b989
(xterm-mouse-event): Recognize control sequences
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
162 ;; a release-event only, no down-event. |
75f49513b989
(xterm-mouse-event): Recognize control sequences
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
163 (cond ((>= type 64) |
75f49513b989
(xterm-mouse-event): Recognize control sequences
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
164 (format "mouse-%d" (- type 60))) |
76924
44b6d7a1ef55
(xterm-mouse-event): Don't use the left edge of the
Nick Roberts <nickrob@snap.net.nz>
parents:
76660
diff
changeset
|
165 ((memq type '(8 9 10)) |
44b6d7a1ef55
(xterm-mouse-event): Don't use the left edge of the
Nick Roberts <nickrob@snap.net.nz>
parents:
76660
diff
changeset
|
166 (setq xterm-mouse-last type) |
44b6d7a1ef55
(xterm-mouse-event): Don't use the left edge of the
Nick Roberts <nickrob@snap.net.nz>
parents:
76660
diff
changeset
|
167 (format "M-down-mouse-%d" (- type 7))) |
44b6d7a1ef55
(xterm-mouse-event): Don't use the left edge of the
Nick Roberts <nickrob@snap.net.nz>
parents:
76660
diff
changeset
|
168 ((= type 11) |
44b6d7a1ef55
(xterm-mouse-event): Don't use the left edge of the
Nick Roberts <nickrob@snap.net.nz>
parents:
76660
diff
changeset
|
169 (format "mouse-%d" (- xterm-mouse-last 7))) |
38563
75f49513b989
(xterm-mouse-event): Recognize control sequences
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
170 ((= type 3) |
75f49513b989
(xterm-mouse-event): Recognize control sequences
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
171 (format "mouse-%d" (+ 1 xterm-mouse-last))) |
75f49513b989
(xterm-mouse-event): Recognize control sequences
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
172 (t |
75f49513b989
(xterm-mouse-event): Recognize control sequences
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
173 (setq xterm-mouse-last type) |
59497
255a31569c3f
(xterm-mouse-translate, xterm-mouse-event): Enable
Nick Roberts <nickrob@snap.net.nz>
parents:
58875
diff
changeset
|
174 (format "down-mouse-%d" (+ 1 type)))))) |
59531
0b4694a3c513
(xterm-mouse-event): Compute window co-ordinates
Nick Roberts <nickrob@snap.net.nz>
parents:
59497
diff
changeset
|
175 (w (window-at x y)) |
0b4694a3c513
(xterm-mouse-event): Compute window co-ordinates
Nick Roberts <nickrob@snap.net.nz>
parents:
59497
diff
changeset
|
176 (ltrb (window-edges w)) |
0b4694a3c513
(xterm-mouse-event): Compute window co-ordinates
Nick Roberts <nickrob@snap.net.nz>
parents:
59497
diff
changeset
|
177 (left (nth 0 ltrb)) |
0b4694a3c513
(xterm-mouse-event): Compute window co-ordinates
Nick Roberts <nickrob@snap.net.nz>
parents:
59497
diff
changeset
|
178 (top (nth 1 ltrb))) |
0b4694a3c513
(xterm-mouse-event): Compute window co-ordinates
Nick Roberts <nickrob@snap.net.nz>
parents:
59497
diff
changeset
|
179 |
83369
d2e0850b17f2
Make xt-mouse.el multi-tty-compatible.
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
180 (set-terminal-parameter nil 'xterm-mouse-x x) |
d2e0850b17f2
Make xt-mouse.el multi-tty-compatible.
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
181 (set-terminal-parameter nil 'xterm-mouse-y y) |
67176
c1b362058986
(xterm-mouse-event): Set last-input-event so
Nick Roberts <nickrob@snap.net.nz>
parents:
64762
diff
changeset
|
182 (setq |
c1b362058986
(xterm-mouse-event): Set last-input-event so
Nick Roberts <nickrob@snap.net.nz>
parents:
64762
diff
changeset
|
183 last-input-event |
76660
b521c6db4e10
(xterm-mouse-event): Remove unused var `time'.
Kim F. Storm <storm@cua.dk>
parents:
76659
diff
changeset
|
184 (list mouse |
76657
ee5fbf83e732
(xterm-mouse-event): Compute a timestamp using
Nick Roberts <nickrob@snap.net.nz>
parents:
75347
diff
changeset
|
185 (let ((event (if w |
ee5fbf83e732
(xterm-mouse-event): Compute a timestamp using
Nick Roberts <nickrob@snap.net.nz>
parents:
75347
diff
changeset
|
186 (posn-at-x-y (- x left) (- y top) w t) |
ee5fbf83e732
(xterm-mouse-event): Compute a timestamp using
Nick Roberts <nickrob@snap.net.nz>
parents:
75347
diff
changeset
|
187 (append (list nil 'menu-bar) |
76924
44b6d7a1ef55
(xterm-mouse-event): Don't use the left edge of the
Nick Roberts <nickrob@snap.net.nz>
parents:
76660
diff
changeset
|
188 (nthcdr 2 (posn-at-x-y x y)))))) |
76657
ee5fbf83e732
(xterm-mouse-event): Compute a timestamp using
Nick Roberts <nickrob@snap.net.nz>
parents:
75347
diff
changeset
|
189 (setcar (nthcdr 3 event) timestamp) |
ee5fbf83e732
(xterm-mouse-event): Compute a timestamp using
Nick Roberts <nickrob@snap.net.nz>
parents:
75347
diff
changeset
|
190 event))))) |
13163 | 191 |
192 ;;;###autoload | |
44520
53a8da1bdd13
(xterm-mouse-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41814
diff
changeset
|
193 (define-minor-mode xterm-mouse-mode |
13163 | 194 "Toggle XTerm mouse mode. |
78492
7c8949dbfa0d
Replace `iff' in doc-strings and comments.
Glenn Morris <rgm@gnu.org>
parents:
78236
diff
changeset
|
195 With prefix arg, turn XTerm mouse mode on if arg is positive, otherwise turn |
7c8949dbfa0d
Replace `iff' in doc-strings and comments.
Glenn Morris <rgm@gnu.org>
parents:
78236
diff
changeset
|
196 it off. |
13163 | 197 |
61255
321e7372c394
(xterm-mouse-mode): Add explicit Custom group (mouse). Doc fix.
Luc Teirlinck <teirllm@auburn.edu>
parents:
59594
diff
changeset
|
198 Turn it on to use Emacs mouse commands, and off to use xterm mouse commands. |
61513
a53097b105b0
(xterm-mouse-mode): Provide correct standard value for Custom. No
Luc Teirlinck <teirllm@auburn.edu>
parents:
61255
diff
changeset
|
199 This works in terminal emulators compatible with xterm. It only |
a53097b105b0
(xterm-mouse-mode): Provide correct standard value for Custom. No
Luc Teirlinck <teirllm@auburn.edu>
parents:
61255
diff
changeset
|
200 works for simple uses of the mouse. Basically, only non-modified |
a53097b105b0
(xterm-mouse-mode): Provide correct standard value for Custom. No
Luc Teirlinck <teirllm@auburn.edu>
parents:
61255
diff
changeset
|
201 single clicks are supported. When turned on, the normal xterm |
a53097b105b0
(xterm-mouse-mode): Provide correct standard value for Custom. No
Luc Teirlinck <teirllm@auburn.edu>
parents:
61255
diff
changeset
|
202 mouse functionality for such clicks is still available by holding |
a53097b105b0
(xterm-mouse-mode): Provide correct standard value for Custom. No
Luc Teirlinck <teirllm@auburn.edu>
parents:
61255
diff
changeset
|
203 down the SHIFT key while pressing the mouse button." |
a53097b105b0
(xterm-mouse-mode): Provide correct standard value for Custom. No
Luc Teirlinck <teirllm@auburn.edu>
parents:
61255
diff
changeset
|
204 :global t :group 'mouse |
44520
53a8da1bdd13
(xterm-mouse-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41814
diff
changeset
|
205 (if xterm-mouse-mode |
53a8da1bdd13
(xterm-mouse-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41814
diff
changeset
|
206 ;; Turn it on |
83369
d2e0850b17f2
Make xt-mouse.el multi-tty-compatible.
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
207 (progn |
84570
d1fd48a6a8ed
* xt-mouse.el (xterm-mouse-mode): Add hooks here not at the top
Dan Nicolaescu <dann@ics.uci.edu>
parents:
83891
diff
changeset
|
208 ;; Frame creation and deletion. |
85416
58c70d072b21
Don't change the global function-key-map anny more.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84769
diff
changeset
|
209 (add-hook 'terminal-init-xterm-hook |
58c70d072b21
Don't change the global function-key-map anny more.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84769
diff
changeset
|
210 'turn-on-xterm-mouse-tracking-on-terminal) |
58c70d072b21
Don't change the global function-key-map anny more.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84769
diff
changeset
|
211 |
84570
d1fd48a6a8ed
* xt-mouse.el (xterm-mouse-mode): Add hooks here not at the top
Dan Nicolaescu <dann@ics.uci.edu>
parents:
83891
diff
changeset
|
212 (add-hook 'delete-frame-functions 'xterm-mouse-handle-delete-frame) |
d1fd48a6a8ed
* xt-mouse.el (xterm-mouse-mode): Add hooks here not at the top
Dan Nicolaescu <dann@ics.uci.edu>
parents:
83891
diff
changeset
|
213 |
d1fd48a6a8ed
* xt-mouse.el (xterm-mouse-mode): Add hooks here not at the top
Dan Nicolaescu <dann@ics.uci.edu>
parents:
83891
diff
changeset
|
214 ;; Restore normal mouse behaviour outside Emacs. |
84769
cbcb89640ef2
* xt-mouse.el (xterm-mouse-mode): Re-enable suspend-tty-functions.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
84616
diff
changeset
|
215 (add-hook 'suspend-tty-functions |
cbcb89640ef2
* xt-mouse.el (xterm-mouse-mode): Re-enable suspend-tty-functions.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
84616
diff
changeset
|
216 'turn-off-xterm-mouse-tracking-on-terminal) |
85416
58c70d072b21
Don't change the global function-key-map anny more.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84769
diff
changeset
|
217 (add-hook 'resume-tty-functions |
84570
d1fd48a6a8ed
* xt-mouse.el (xterm-mouse-mode): Add hooks here not at the top
Dan Nicolaescu <dann@ics.uci.edu>
parents:
83891
diff
changeset
|
218 'turn-on-xterm-mouse-tracking-on-terminal) |
d1fd48a6a8ed
* xt-mouse.el (xterm-mouse-mode): Add hooks here not at the top
Dan Nicolaescu <dann@ics.uci.edu>
parents:
83891
diff
changeset
|
219 (add-hook 'suspend-hook 'turn-off-xterm-mouse-tracking) |
d1fd48a6a8ed
* xt-mouse.el (xterm-mouse-mode): Add hooks here not at the top
Dan Nicolaescu <dann@ics.uci.edu>
parents:
83891
diff
changeset
|
220 (add-hook 'suspend-resume-hook 'turn-on-xterm-mouse-tracking) |
d1fd48a6a8ed
* xt-mouse.el (xterm-mouse-mode): Add hooks here not at the top
Dan Nicolaescu <dann@ics.uci.edu>
parents:
83891
diff
changeset
|
221 (add-hook 'kill-emacs-hook 'turn-off-xterm-mouse-tracking) |
44520
53a8da1bdd13
(xterm-mouse-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41814
diff
changeset
|
222 (setq mouse-position-function #'xterm-mouse-position-function) |
53a8da1bdd13
(xterm-mouse-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41814
diff
changeset
|
223 (turn-on-xterm-mouse-tracking)) |
53a8da1bdd13
(xterm-mouse-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41814
diff
changeset
|
224 ;; Turn it off |
84570
d1fd48a6a8ed
* xt-mouse.el (xterm-mouse-mode): Add hooks here not at the top
Dan Nicolaescu <dann@ics.uci.edu>
parents:
83891
diff
changeset
|
225 (remove-hook 'delete-frame-functions 'xterm-mouse-handle-delete-frame) |
84769
cbcb89640ef2
* xt-mouse.el (xterm-mouse-mode): Re-enable suspend-tty-functions.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
84616
diff
changeset
|
226 (remove-hook 'suspend-tty-functions |
cbcb89640ef2
* xt-mouse.el (xterm-mouse-mode): Re-enable suspend-tty-functions.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
84616
diff
changeset
|
227 'turn-off-xterm-mouse-tracking-on-terminal) |
84570
d1fd48a6a8ed
* xt-mouse.el (xterm-mouse-mode): Add hooks here not at the top
Dan Nicolaescu <dann@ics.uci.edu>
parents:
83891
diff
changeset
|
228 (remove-hook 'resume-tty-functions |
d1fd48a6a8ed
* xt-mouse.el (xterm-mouse-mode): Add hooks here not at the top
Dan Nicolaescu <dann@ics.uci.edu>
parents:
83891
diff
changeset
|
229 'turn-on-xterm-mouse-tracking-on-terminal) |
d1fd48a6a8ed
* xt-mouse.el (xterm-mouse-mode): Add hooks here not at the top
Dan Nicolaescu <dann@ics.uci.edu>
parents:
83891
diff
changeset
|
230 (remove-hook 'suspend-hook 'turn-off-xterm-mouse-tracking) |
d1fd48a6a8ed
* xt-mouse.el (xterm-mouse-mode): Add hooks here not at the top
Dan Nicolaescu <dann@ics.uci.edu>
parents:
83891
diff
changeset
|
231 (remove-hook 'suspend-resume-hook 'turn-on-xterm-mouse-tracking) |
d1fd48a6a8ed
* xt-mouse.el (xterm-mouse-mode): Add hooks here not at the top
Dan Nicolaescu <dann@ics.uci.edu>
parents:
83891
diff
changeset
|
232 (remove-hook 'kill-emacs-hook 'turn-off-xterm-mouse-tracking) |
44520
53a8da1bdd13
(xterm-mouse-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41814
diff
changeset
|
233 (turn-off-xterm-mouse-tracking 'force) |
53a8da1bdd13
(xterm-mouse-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41814
diff
changeset
|
234 (setq mouse-position-function nil))) |
13163 | 235 |
236 (defun turn-on-xterm-mouse-tracking () | |
27803 | 237 "Enable Emacs mouse tracking in xterm." |
85416
58c70d072b21
Don't change the global function-key-map anny more.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84769
diff
changeset
|
238 (dolist (terminal (delete-dups (mapcar 'frame-terminal (frame-list)))) |
58c70d072b21
Don't change the global function-key-map anny more.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84769
diff
changeset
|
239 (turn-on-xterm-mouse-tracking-on-terminal terminal))) |
13163 | 240 |
44520
53a8da1bdd13
(xterm-mouse-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41814
diff
changeset
|
241 (defun turn-off-xterm-mouse-tracking (&optional force) |
41814
42c496dc0b7d
(turn-off-xterm-mouse-tracking): Doc fix.
Andreas Schwab <schwab@suse.de>
parents:
38563
diff
changeset
|
242 "Disable Emacs mouse tracking in xterm." |
85416
58c70d072b21
Don't change the global function-key-map anny more.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84769
diff
changeset
|
243 (dolist (terminal (delete-dups (mapcar 'frame-terminal (frame-list)))) |
58c70d072b21
Don't change the global function-key-map anny more.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84769
diff
changeset
|
244 (turn-off-xterm-mouse-tracking-on-terminal terminal))) |
83369
d2e0850b17f2
Make xt-mouse.el multi-tty-compatible.
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
245 |
85416
58c70d072b21
Don't change the global function-key-map anny more.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84769
diff
changeset
|
246 (defun turn-on-xterm-mouse-tracking-on-terminal (&optional terminal) |
83369
d2e0850b17f2
Make xt-mouse.el multi-tty-compatible.
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
247 "Enable xterm mouse tracking on TERMINAL." |
83431
76396de7f50a
Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents:
83405
diff
changeset
|
248 (when (and xterm-mouse-mode (eq t (terminal-live-p terminal))) |
85416
58c70d072b21
Don't change the global function-key-map anny more.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84769
diff
changeset
|
249 (unless (terminal-parameter terminal 'xterm-mouse-mode) |
58c70d072b21
Don't change the global function-key-map anny more.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84769
diff
changeset
|
250 ;; Simulate selecting a terminal by selecting one of its frames ;-( |
58c70d072b21
Don't change the global function-key-map anny more.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84769
diff
changeset
|
251 (with-selected-frame (car (frames-on-display-list terminal)) |
58c70d072b21
Don't change the global function-key-map anny more.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84769
diff
changeset
|
252 (define-key input-decode-map "\e[M" 'xterm-mouse-translate)) |
58c70d072b21
Don't change the global function-key-map anny more.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84769
diff
changeset
|
253 (set-terminal-parameter terminal 'xterm-mouse-mode t)) |
83369
d2e0850b17f2
Make xt-mouse.el multi-tty-compatible.
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
254 (send-string-to-terminal "\e[?1000h" terminal))) |
13163 | 255 |
83369
d2e0850b17f2
Make xt-mouse.el multi-tty-compatible.
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
256 (defun turn-off-xterm-mouse-tracking-on-terminal (terminal) |
d2e0850b17f2
Make xt-mouse.el multi-tty-compatible.
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
257 "Disable xterm mouse tracking on TERMINAL." |
85416
58c70d072b21
Don't change the global function-key-map anny more.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84769
diff
changeset
|
258 ;; Only send the disable command to those terminals to which we've already |
58c70d072b21
Don't change the global function-key-map anny more.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84769
diff
changeset
|
259 ;; sent the enable command. |
58c70d072b21
Don't change the global function-key-map anny more.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84769
diff
changeset
|
260 (when (and (terminal-parameter terminal 'xterm-mouse-mode) |
58c70d072b21
Don't change the global function-key-map anny more.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84769
diff
changeset
|
261 (eq t (terminal-live-p terminal))) |
58c70d072b21
Don't change the global function-key-map anny more.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84769
diff
changeset
|
262 ;; We could remove the key-binding and unset the `xterm-mouse-mode' |
58c70d072b21
Don't change the global function-key-map anny more.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84769
diff
changeset
|
263 ;; terminal parameter, but it seems less harmful to send this escape |
58c70d072b21
Don't change the global function-key-map anny more.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84769
diff
changeset
|
264 ;; command too many times (or to catch an unintended key sequence), than |
58c70d072b21
Don't change the global function-key-map anny more.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84769
diff
changeset
|
265 ;; to send it too few times (or to fail to let xterm-mouse events |
58c70d072b21
Don't change the global function-key-map anny more.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
84769
diff
changeset
|
266 ;; pass by untranslated). |
83369
d2e0850b17f2
Make xt-mouse.el multi-tty-compatible.
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
267 (send-string-to-terminal "\e[?1000l" terminal))) |
d2e0850b17f2
Make xt-mouse.el multi-tty-compatible.
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
268 |
d2e0850b17f2
Make xt-mouse.el multi-tty-compatible.
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
269 (defun xterm-mouse-handle-delete-frame (frame) |
d2e0850b17f2
Make xt-mouse.el multi-tty-compatible.
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
270 "Turn off xterm mouse tracking if FRAME is the last frame on its device." |
d2e0850b17f2
Make xt-mouse.el multi-tty-compatible.
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
271 (when (and (eq t (frame-live-p frame)) |
83431
76396de7f50a
Rename `struct device' to `struct terminal'. Rename some terminal-related functions similarly.
Karoly Lorentey <lorentey@elte.hu>
parents:
83405
diff
changeset
|
272 (<= 1 (length (frames-on-display-list (frame-terminal frame))))) |
83369
d2e0850b17f2
Make xt-mouse.el multi-tty-compatible.
Karoly Lorentey <lorentey@elte.hu>
parents:
83353
diff
changeset
|
273 (turn-off-xterm-mouse-tracking-on-terminal frame))) |
13163 | 274 |
275 (provide 'xt-mouse) | |
276 | |
77809
20f40276359e
(xterm-mouse-truncate-wrap): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
76924
diff
changeset
|
277 ;; arch-tag: 84962d4e-fae9-4c13-a9d7-ef4925a4ac03 |
13163 | 278 ;;; xt-mouse.el ends here |