Mercurial > emacs
annotate lisp/emulation/viper-mous.el @ 91335:07ce8496076f
(describe-char-display): Fix previous change.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Fri, 11 Jan 2008 04:16:14 +0000 |
parents | 606f2d163a64 |
children |
rev | line source |
---|---|
13337 | 1 ;;; viper-mous.el --- mouse support for Viper |
2 | |
64701
34bd8e434dd7
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64215
diff
changeset
|
3 ;; Copyright (C) 1994, 1995, 1996, 1997, 2001, 2002, 2003, 2004, |
79705 | 4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc. |
11288 | 5 |
42602
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39215
diff
changeset
|
6 ;; Author: Michael Kifer <kifer@cs.stonybrook.edu> |
39215
8dccf2552307
2001-09-09 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
38414
diff
changeset
|
7 |
10789 | 8 ;; This file is part of GNU Emacs. |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
78218
ac0efac52065
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
75346
diff
changeset
|
12 ;; the Free Software Foundation; either version 3, or (at your option) |
10789 | 13 ;; any later version. |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
14169 | 21 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64085 | 22 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
23 ;; Boston, MA 02110-1301, USA. | |
10789 | 24 |
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
26263
diff
changeset
|
25 ;;; Commentary: |
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
26263
diff
changeset
|
26 |
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
26263
diff
changeset
|
27 ;;; Code: |
14909
7ff1df13b124
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14586
diff
changeset
|
28 |
18047 | 29 (provide 'viper-mous) |
10789 | 30 |
14909
7ff1df13b124
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14586
diff
changeset
|
31 ;; compiler pacifier |
7ff1df13b124
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14586
diff
changeset
|
32 (defvar double-click-time) |
7ff1df13b124
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14586
diff
changeset
|
33 (defvar mouse-track-multi-click-time) |
19079 | 34 (defvar viper-search-start-marker) |
35 (defvar viper-local-search-start-marker) | |
36 (defvar viper-search-history) | |
37 (defvar viper-s-string) | |
38 (defvar viper-re-search) | |
18047 | 39 |
18172 | 40 ;; loading happens only in non-interactive compilation |
41 ;; in order to spare non-viperized emacs from being viperized | |
42 (if noninteractive | |
43 (eval-when-compile | |
44 (let ((load-path (cons (expand-file-name ".") load-path))) | |
45 (or (featurep 'viper-cmd) | |
86523
a5a206b3f518
Load viper*.el files silently.
Glenn Morris <rgm@gnu.org>
parents:
85972
diff
changeset
|
46 (load "viper-cmd.el" nil t 'nosuffix)) |
18172 | 47 ))) |
18047 | 48 ;; end pacifier |
49 | |
50 (require 'viper-util) | |
51 | |
14909
7ff1df13b124
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14586
diff
changeset
|
52 |
18839 | 53 (defgroup viper-mouse nil |
64034
f1afe84c7bbc
(viper-mouse): Finish `defgroup' description with period.
Juanma Barranquero <lekktu@gmail.com>
parents:
52401
diff
changeset
|
54 "Support for Viper special mouse-bound commands." |
19079 | 55 :prefix "viper-" |
18839 | 56 :group 'viper) |
57 | |
10789 | 58 |
59 ;;; Variables | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42602
diff
changeset
|
60 |
10789 | 61 ;; Variable used for catching the switch-frame event. |
62 ;; If non-nil, indicates that previous-frame should be the selected | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
22285
diff
changeset
|
63 ;; one. Used by viper-mouse-click-get-word. Not a user option. |
19079 | 64 (defvar viper-frame-of-focus nil) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42602
diff
changeset
|
65 |
10789 | 66 ;; Frame that was selected before the switch-frame event. |
64215
a4c59075cac8
* viper-cmd.el (viper--key-maps): new variable.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
64085
diff
changeset
|
67 (defvar viper-current-frame-saved (selected-frame)) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42602
diff
changeset
|
68 |
19079 | 69 (defcustom viper-surrounding-word-function 'viper-surrounding-word |
10789 | 70 "*Function that determines what constitutes a word for clicking events. |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42602
diff
changeset
|
71 Takes two parameters: a COUNT, indicating how many words to return, |
10789 | 72 and CLICK-COUNT, telling whether this is the first click, a double-click, |
18839 | 73 or a tripple-click." |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
22285
diff
changeset
|
74 :type 'symbol |
18839 | 75 :group 'viper-mouse) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42602
diff
changeset
|
76 |
10789 | 77 ;; time interval in millisecond within which successive clicks are |
78 ;; considered related | |
19079 | 79 (defcustom viper-multiclick-timeout (if (viper-window-display-p) |
85972
51aa47312c4b
* ediff-init.el (ediff-xemacs-p, ediff-emacs-p): Remove.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78218
diff
changeset
|
80 (if (featurep 'xemacs) |
18839 | 81 mouse-track-multi-click-time |
82 double-click-time) | |
83 500) | |
84 "*Time interval in millisecond within which successive mouse clicks are | |
85 considered related." | |
86 :type 'integer | |
87 :group 'viper-mouse) | |
10789 | 88 |
89 ;; current event click count; XEmacs only | |
19079 | 90 (defvar viper-current-click-count 0) |
10789 | 91 ;; time stamp of the last click event; XEmacs only |
19079 | 92 (defvar viper-last-click-event-timestamp 0) |
10789 | 93 |
94 ;; Local variable used to toggle wraparound search on click. | |
19079 | 95 (viper-deflocalvar viper-mouse-click-search-noerror t) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42602
diff
changeset
|
96 |
10789 | 97 ;; Local variable used to delimit search after wraparound. |
19079 | 98 (viper-deflocalvar viper-mouse-click-search-limit nil) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42602
diff
changeset
|
99 |
10789 | 100 ;; remembers prefix argument to pass along to commands invoked by second |
101 ;; click. | |
102 ;; This is needed because in Emacs (not XEmacs), assigning to preix-arg | |
103 ;; causes Emacs to count the second click as if it was a single click | |
19079 | 104 (defvar viper-global-prefix-argument nil) |
105 | |
106 | |
107 ;; same keys, but parsed | |
108 (defvar viper-mouse-up-search-key-parsed nil) | |
109 (defvar viper-mouse-down-search-key-parsed nil) | |
110 (defvar viper-mouse-up-insert-key-parsed nil) | |
111 (defvar viper-mouse-down-insert-key-parsed nil) | |
112 | |
10789 | 113 |
114 | |
115 | |
116 ;;; Code | |
117 | |
19079 | 118 (defsubst viper-multiclick-p () |
119 (not (viper-sit-for-short viper-multiclick-timeout t))) | |
14384
854325337547
Moved code around to minimize compiler warnings.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14233
diff
changeset
|
120 |
854325337547
Moved code around to minimize compiler warnings.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14233
diff
changeset
|
121 ;; Returns window where click occurs |
20206 | 122 (defun viper-mouse-click-window (click) |
42602
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39215
diff
changeset
|
123 (let ((win (viper-cond-compile-for-xemacs-or-emacs |
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39215
diff
changeset
|
124 (event-window click) ; xemacs |
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39215
diff
changeset
|
125 (posn-window (event-start click)) ; emacs |
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39215
diff
changeset
|
126 ))) |
20206 | 127 (if (window-live-p win) |
128 win | |
129 (error "Click was not over a live window")))) | |
14384
854325337547
Moved code around to minimize compiler warnings.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14233
diff
changeset
|
130 |
854325337547
Moved code around to minimize compiler warnings.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14233
diff
changeset
|
131 ;; Returns window where click occurs |
19079 | 132 (defsubst viper-mouse-click-frame (click) |
133 (window-frame (viper-mouse-click-window click))) | |
14384
854325337547
Moved code around to minimize compiler warnings.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14233
diff
changeset
|
134 |
854325337547
Moved code around to minimize compiler warnings.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14233
diff
changeset
|
135 ;; Returns the buffer of the window where click occurs |
19079 | 136 (defsubst viper-mouse-click-window-buffer (click) |
137 (window-buffer (viper-mouse-click-window click))) | |
14384
854325337547
Moved code around to minimize compiler warnings.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14233
diff
changeset
|
138 |
854325337547
Moved code around to minimize compiler warnings.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14233
diff
changeset
|
139 ;; Returns the name of the buffer in the window where click occurs |
19079 | 140 (defsubst viper-mouse-click-window-buffer-name (click) |
141 (buffer-name (viper-mouse-click-window-buffer click))) | |
14384
854325337547
Moved code around to minimize compiler warnings.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14233
diff
changeset
|
142 |
854325337547
Moved code around to minimize compiler warnings.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14233
diff
changeset
|
143 ;; Returns position of a click |
19079 | 144 (defsubst viper-mouse-click-posn (click) |
42602
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39215
diff
changeset
|
145 (viper-cond-compile-for-xemacs-or-emacs |
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39215
diff
changeset
|
146 (event-point click) ; xemacs |
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39215
diff
changeset
|
147 (posn-point (event-start click)) ; emacs |
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39215
diff
changeset
|
148 )) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42602
diff
changeset
|
149 |
14384
854325337547
Moved code around to minimize compiler warnings.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14233
diff
changeset
|
150 |
19079 | 151 (defun viper-surrounding-word (count click-count) |
10789 | 152 "Returns word surrounding point according to a heuristic. |
153 COUNT indicates how many regions to return. | |
12694
9dedaee6ee1c
(vip-multiclick-timeout): new default.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12140
diff
changeset
|
154 If CLICK-COUNT is 1, `word' is a word in Vi sense. |
9dedaee6ee1c
(vip-multiclick-timeout): new default.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12140
diff
changeset
|
155 If CLICK-COUNT is 2,then `word' is a Word in Vi sense. |
10789 | 156 If the character clicked on is a non-separator and is non-alphanumeric but |
157 is adjacent to an alphanumeric symbol, then it is considered alphanumeric | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
22285
diff
changeset
|
158 for the purpose of this command. If this character has a matching |
10789 | 159 character, such as `\(' is a match for `\)', then the matching character is |
160 also considered alphanumeric. | |
12694
9dedaee6ee1c
(vip-multiclick-timeout): new default.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12140
diff
changeset
|
161 For convenience, in Lisp modes, `-' is considered alphanumeric. |
9dedaee6ee1c
(vip-multiclick-timeout): new default.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12140
diff
changeset
|
162 |
9dedaee6ee1c
(vip-multiclick-timeout): new default.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12140
diff
changeset
|
163 If CLICK-COUNT is 3 or more, returns the line clicked on with leading and |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
22285
diff
changeset
|
164 trailing space and tabs removed. In that case, the first argument, COUNT, |
12694
9dedaee6ee1c
(vip-multiclick-timeout): new default.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12140
diff
changeset
|
165 is ignored." |
22285
2e952bf93040
(viper-surrounding-word): Added '_' to alpha modifiers.
Karl Heuer <kwzh@gnu.org>
parents:
20206
diff
changeset
|
166 (let ((modifiers "_") |
12898
e5d4ba91148f
(vip-surrounding-word): modified to understand tripple clicks.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12694
diff
changeset
|
167 beg skip-flag result |
13212
73b3decace33
* viper-mous.el (vip-surrounding-word): modified to understand tripple clicks.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12898
diff
changeset
|
168 word-beg) |
12898
e5d4ba91148f
(vip-surrounding-word): modified to understand tripple clicks.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12694
diff
changeset
|
169 (if (> click-count 2) |
12694
9dedaee6ee1c
(vip-multiclick-timeout): new default.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12140
diff
changeset
|
170 (save-excursion |
9dedaee6ee1c
(vip-multiclick-timeout): new default.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12140
diff
changeset
|
171 (beginning-of-line) |
19079 | 172 (viper-skip-all-separators-forward 'within-line) |
12694
9dedaee6ee1c
(vip-multiclick-timeout): new default.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12140
diff
changeset
|
173 (setq beg (point)) |
9dedaee6ee1c
(vip-multiclick-timeout): new default.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12140
diff
changeset
|
174 (end-of-line) |
12898
e5d4ba91148f
(vip-surrounding-word): modified to understand tripple clicks.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12694
diff
changeset
|
175 (setq result (buffer-substring beg (point)))) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42602
diff
changeset
|
176 |
19079 | 177 (if (and (not (viper-looking-at-alphasep)) |
178 (or (save-excursion (viper-backward-char-carefully) | |
179 (viper-looking-at-alpha)) | |
180 (save-excursion (viper-forward-char-carefully) | |
181 (viper-looking-at-alpha)))) | |
13212
73b3decace33
* viper-mous.el (vip-surrounding-word): modified to understand tripple clicks.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12898
diff
changeset
|
182 (setq modifiers |
22285
2e952bf93040
(viper-surrounding-word): Added '_' to alpha modifiers.
Karl Heuer <kwzh@gnu.org>
parents:
20206
diff
changeset
|
183 (concat modifiers |
2e952bf93040
(viper-surrounding-word): Added '_' to alpha modifiers.
Karl Heuer <kwzh@gnu.org>
parents:
20206
diff
changeset
|
184 (cond ((looking-at "\\\\") "\\\\") |
2e952bf93040
(viper-surrounding-word): Added '_' to alpha modifiers.
Karl Heuer <kwzh@gnu.org>
parents:
20206
diff
changeset
|
185 ((looking-at "-") "C-C-") |
2e952bf93040
(viper-surrounding-word): Added '_' to alpha modifiers.
Karl Heuer <kwzh@gnu.org>
parents:
20206
diff
changeset
|
186 ((looking-at "[][]") "][") |
2e952bf93040
(viper-surrounding-word): Added '_' to alpha modifiers.
Karl Heuer <kwzh@gnu.org>
parents:
20206
diff
changeset
|
187 ((looking-at "[()]") ")(") |
2e952bf93040
(viper-surrounding-word): Added '_' to alpha modifiers.
Karl Heuer <kwzh@gnu.org>
parents:
20206
diff
changeset
|
188 ((looking-at "[{}]") "{}") |
2e952bf93040
(viper-surrounding-word): Added '_' to alpha modifiers.
Karl Heuer <kwzh@gnu.org>
parents:
20206
diff
changeset
|
189 ((looking-at "[<>]") "<>") |
2e952bf93040
(viper-surrounding-word): Added '_' to alpha modifiers.
Karl Heuer <kwzh@gnu.org>
parents:
20206
diff
changeset
|
190 ((looking-at "[`']") "`'") |
2e952bf93040
(viper-surrounding-word): Added '_' to alpha modifiers.
Karl Heuer <kwzh@gnu.org>
parents:
20206
diff
changeset
|
191 ((looking-at "\\^") "\\^") |
2e952bf93040
(viper-surrounding-word): Added '_' to alpha modifiers.
Karl Heuer <kwzh@gnu.org>
parents:
20206
diff
changeset
|
192 ((viper-looking-at-separator) "") |
2e952bf93040
(viper-surrounding-word): Added '_' to alpha modifiers.
Karl Heuer <kwzh@gnu.org>
parents:
20206
diff
changeset
|
193 (t (char-to-string (following-char)))) |
2e952bf93040
(viper-surrounding-word): Added '_' to alpha modifiers.
Karl Heuer <kwzh@gnu.org>
parents:
20206
diff
changeset
|
194 ) |
13212
73b3decace33
* viper-mous.el (vip-surrounding-word): modified to understand tripple clicks.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12898
diff
changeset
|
195 )) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42602
diff
changeset
|
196 |
13212
73b3decace33
* viper-mous.el (vip-surrounding-word): modified to understand tripple clicks.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12898
diff
changeset
|
197 ;; Add `-' to alphanum, if it wasn't added and if we are in Lisp |
12694
9dedaee6ee1c
(vip-multiclick-timeout): new default.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12140
diff
changeset
|
198 (or (looking-at "-") |
9dedaee6ee1c
(vip-multiclick-timeout): new default.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12140
diff
changeset
|
199 (not (string-match "lisp" (symbol-name major-mode))) |
13212
73b3decace33
* viper-mous.el (vip-surrounding-word): modified to understand tripple clicks.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12898
diff
changeset
|
200 (setq modifiers (concat modifiers "C-C-"))) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42602
diff
changeset
|
201 |
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42602
diff
changeset
|
202 |
12694
9dedaee6ee1c
(vip-multiclick-timeout): new default.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12140
diff
changeset
|
203 (save-excursion |
19079 | 204 (cond ((> click-count 1) (viper-skip-nonseparators 'backward)) |
205 ((viper-looking-at-alpha modifiers) | |
206 (viper-skip-alpha-backward modifiers)) | |
207 ((not (viper-looking-at-alphasep modifiers)) | |
208 (viper-skip-nonalphasep-backward)) | |
13212
73b3decace33
* viper-mous.el (vip-surrounding-word): modified to understand tripple clicks.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12898
diff
changeset
|
209 (t (if (> click-count 1) |
19079 | 210 (viper-skip-nonseparators 'backward) |
211 (viper-skip-alpha-backward modifiers)))) | |
13212
73b3decace33
* viper-mous.el (vip-surrounding-word): modified to understand tripple clicks.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12898
diff
changeset
|
212 |
12694
9dedaee6ee1c
(vip-multiclick-timeout): new default.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12140
diff
changeset
|
213 (setq word-beg (point)) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42602
diff
changeset
|
214 |
13212
73b3decace33
* viper-mous.el (vip-surrounding-word): modified to understand tripple clicks.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12898
diff
changeset
|
215 (setq skip-flag nil) ; don't move 1 char forw the first time |
12694
9dedaee6ee1c
(vip-multiclick-timeout): new default.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12140
diff
changeset
|
216 (while (> count 0) |
19079 | 217 (if skip-flag (viper-forward-char-carefully 1)) |
13212
73b3decace33
* viper-mous.el (vip-surrounding-word): modified to understand tripple clicks.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12898
diff
changeset
|
218 (setq skip-flag t) ; now always move 1 char forward |
73b3decace33
* viper-mous.el (vip-surrounding-word): modified to understand tripple clicks.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12898
diff
changeset
|
219 (if (> click-count 1) |
19079 | 220 (viper-skip-nonseparators 'forward) |
221 (viper-skip-alpha-forward modifiers)) | |
12694
9dedaee6ee1c
(vip-multiclick-timeout): new default.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12140
diff
changeset
|
222 (setq count (1- count))) |
13212
73b3decace33
* viper-mous.el (vip-surrounding-word): modified to understand tripple clicks.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12898
diff
changeset
|
223 |
12898
e5d4ba91148f
(vip-surrounding-word): modified to understand tripple clicks.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12694
diff
changeset
|
224 (setq result (buffer-substring word-beg (point)))) |
e5d4ba91148f
(vip-surrounding-word): modified to understand tripple clicks.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12694
diff
changeset
|
225 ) ; if |
13212
73b3decace33
* viper-mous.el (vip-surrounding-word): modified to understand tripple clicks.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12898
diff
changeset
|
226 ;; XEmacs doesn't have set-text-properties, but there buffer-substring |
12898
e5d4ba91148f
(vip-surrounding-word): modified to understand tripple clicks.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12694
diff
changeset
|
227 ;; doesn't return properties together with the string, so it's not needed. |
85972
51aa47312c4b
* ediff-init.el (ediff-xemacs-p, ediff-emacs-p): Remove.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78218
diff
changeset
|
228 (if (featurep 'emacs) |
12898
e5d4ba91148f
(vip-surrounding-word): modified to understand tripple clicks.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12694
diff
changeset
|
229 (set-text-properties 0 (length result) nil result)) |
e5d4ba91148f
(vip-surrounding-word): modified to understand tripple clicks.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12694
diff
changeset
|
230 result |
e5d4ba91148f
(vip-surrounding-word): modified to understand tripple clicks.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12694
diff
changeset
|
231 )) |
10789 | 232 |
233 | |
19079 | 234 (defun viper-mouse-click-get-word (click count click-count) |
10789 | 235 "Returns word surrounding the position of a mouse click. |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
22285
diff
changeset
|
236 Click may be in another window. Current window and buffer isn't changed. |
12694
9dedaee6ee1c
(vip-multiclick-timeout): new default.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12140
diff
changeset
|
237 On single or double click, returns the word as determined by |
19079 | 238 `viper-surrounding-word-function'." |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42602
diff
changeset
|
239 |
10789 | 240 (let ((click-word "") |
19079 | 241 (click-pos (viper-mouse-click-posn click)) |
242 (click-buf (viper-mouse-click-window-buffer click))) | |
15480
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14909
diff
changeset
|
243 (or (natnump count) (setq count 1)) |
43a3308fcf61
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
14909
diff
changeset
|
244 (or (natnump click-count) (setq click-count 1)) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42602
diff
changeset
|
245 |
10789 | 246 (save-excursion |
247 (save-window-excursion | |
248 (if click-pos | |
249 (progn | |
250 (set-buffer click-buf) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42602
diff
changeset
|
251 |
10789 | 252 (goto-char click-pos) |
253 (setq click-word | |
19079 | 254 (funcall viper-surrounding-word-function count click-count))) |
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
26263
diff
changeset
|
255 (error "Click must be over a window")) |
10789 | 256 click-word)))) |
257 | |
258 | |
19079 | 259 (defun viper-mouse-click-insert-word (click arg) |
10789 | 260 "Insert word clicked or double-clicked on. |
261 With prefix argument, N, insert that many words. | |
262 This command must be bound to a mouse click. | |
263 The double-click action of the same mouse button must not be bound | |
264 \(or it must be bound to the same function\). | |
19079 | 265 See `viper-surrounding-word' for the definition of a word in this case." |
10789 | 266 (interactive "e\nP") |
19079 | 267 (if viper-frame-of-focus ;; to handle clicks in another frame |
268 (select-frame viper-frame-of-focus)) | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
22285
diff
changeset
|
269 (if (save-excursion |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
22285
diff
changeset
|
270 (or (not (eq (key-binding viper-mouse-down-insert-key-parsed) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
22285
diff
changeset
|
271 'viper-mouse-catch-frame-switch)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
22285
diff
changeset
|
272 (not (eq (key-binding viper-mouse-up-insert-key-parsed) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
22285
diff
changeset
|
273 'viper-mouse-click-insert-word)) |
85972
51aa47312c4b
* ediff-init.el (ediff-xemacs-p, ediff-emacs-p): Remove.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78218
diff
changeset
|
274 (and (featurep 'xemacs) (not (event-over-text-area-p click))))) |
19756 | 275 () ; do nothing, if binding isn't right or not over text |
276 ;; turn arg into a number | |
277 (cond ((integerp arg) nil) | |
278 ;; prefix arg is a list when one hits C-u then command | |
279 ((and (listp arg) (integerp (car arg))) | |
280 (setq arg (car arg))) | |
281 (t (setq arg 1))) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42602
diff
changeset
|
282 |
19756 | 283 (if (not (eq (key-binding viper-mouse-down-insert-key-parsed) |
284 'viper-mouse-catch-frame-switch)) | |
285 () ; do nothing | |
286 (let (click-count interrupting-event) | |
287 (if (and | |
288 (viper-multiclick-p) | |
289 ;; This trick checks if there is a pending mouse event if so, we | |
290 ;; use this latter event and discard the current mouse click If | |
291 ;; the next pending event is not a mouse event, we execute the | |
292 ;; current mouse event | |
293 (progn | |
294 (setq interrupting-event (viper-read-event)) | |
295 (viper-mouse-event-p last-input-event))) | |
296 (progn ; interrupted wait | |
297 (setq viper-global-prefix-argument arg) | |
298 ;; count this click for XEmacs | |
299 (viper-event-click-count click)) | |
300 ;; uninterrupted wait or the interrupting event wasn't a mouse event | |
301 (setq click-count (viper-event-click-count click)) | |
302 (if (> click-count 1) | |
303 (setq arg viper-global-prefix-argument | |
304 viper-global-prefix-argument nil)) | |
305 (insert (viper-mouse-click-get-word click arg click-count)) | |
306 (if (and interrupting-event | |
307 (eventp interrupting-event) | |
308 (not (viper-mouse-event-p interrupting-event))) | |
309 (viper-set-unread-command-events interrupting-event)) | |
310 ))))) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42602
diff
changeset
|
311 |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
22285
diff
changeset
|
312 ;; Arg is an event. Accepts symbols and numbers, too |
19079 | 313 (defun viper-mouse-event-p (event) |
10789 | 314 (if (eventp event) |
315 (string-match "\\(mouse-\\|frame\\|screen\\|track\\)" | |
19079 | 316 (prin1-to-string (viper-event-key event))))) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42602
diff
changeset
|
317 |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
22285
diff
changeset
|
318 ;; XEmacs has no double-click events. So, we must simulate. |
10789 | 319 ;; So, we have to simulate event-click-count. |
19079 | 320 (defun viper-event-click-count (click) |
42602
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39215
diff
changeset
|
321 (viper-cond-compile-for-xemacs-or-emacs |
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39215
diff
changeset
|
322 (viper-event-click-count-xemacs click) ; xemacs |
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39215
diff
changeset
|
323 (event-click-count click) ; emacs |
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39215
diff
changeset
|
324 )) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42602
diff
changeset
|
325 |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
22285
diff
changeset
|
326 ;; kind of semaphore for updating viper-current-click-count |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
22285
diff
changeset
|
327 (defvar viper-counting-clicks-p nil) |
42602
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39215
diff
changeset
|
328 (viper-cond-compile-for-xemacs-or-emacs |
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39215
diff
changeset
|
329 (defun viper-event-click-count-xemacs (click) |
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39215
diff
changeset
|
330 (let ((time-delta (- (event-timestamp click) |
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39215
diff
changeset
|
331 viper-last-click-event-timestamp)) |
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39215
diff
changeset
|
332 inhibit-quit) |
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39215
diff
changeset
|
333 (while viper-counting-clicks-p |
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39215
diff
changeset
|
334 (ignore)) |
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39215
diff
changeset
|
335 (setq viper-counting-clicks-p t) |
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39215
diff
changeset
|
336 (if (> time-delta viper-multiclick-timeout) |
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39215
diff
changeset
|
337 (setq viper-current-click-count 0)) |
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39215
diff
changeset
|
338 (discard-input) |
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39215
diff
changeset
|
339 (setq viper-current-click-count (1+ viper-current-click-count) |
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39215
diff
changeset
|
340 viper-last-click-event-timestamp (event-timestamp click)) |
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39215
diff
changeset
|
341 (setq viper-counting-clicks-p nil) |
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39215
diff
changeset
|
342 (if (viper-sit-for-short viper-multiclick-timeout t) |
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39215
diff
changeset
|
343 viper-current-click-count |
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39215
diff
changeset
|
344 0) |
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39215
diff
changeset
|
345 )) |
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39215
diff
changeset
|
346 nil ; emacs |
633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
39215
diff
changeset
|
347 ) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42602
diff
changeset
|
348 |
10789 | 349 |
19079 | 350 (defun viper-mouse-click-search-word (click arg) |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
22285
diff
changeset
|
351 "Find the word clicked or double-clicked on. Word may be in another window. |
10789 | 352 With prefix argument, N, search for N-th occurrence. |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
22285
diff
changeset
|
353 This command must be bound to a mouse click. The double-click action of the |
10789 | 354 same button must not be bound \(or it must be bound to the same function\). |
19079 | 355 See `viper-surrounding-word' for the details on what constitutes a word for |
10789 | 356 this command." |
357 (interactive "e\nP") | |
19079 | 358 (if viper-frame-of-focus ;; to handle clicks in another frame |
359 (select-frame viper-frame-of-focus)) | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
22285
diff
changeset
|
360 (if (save-excursion |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
22285
diff
changeset
|
361 (or (not (eq (key-binding viper-mouse-down-search-key-parsed) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
22285
diff
changeset
|
362 'viper-mouse-catch-frame-switch)) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
22285
diff
changeset
|
363 (not (eq (key-binding viper-mouse-up-search-key-parsed) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
22285
diff
changeset
|
364 'viper-mouse-click-search-word)) |
85972
51aa47312c4b
* ediff-init.el (ediff-xemacs-p, ediff-emacs-p): Remove.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78218
diff
changeset
|
365 (and (featurep 'xemacs) (not (event-over-text-area-p click))))) |
19756 | 366 () ; do nothing, if binding isn't right or not over text |
19079 | 367 (let ((previous-search-string viper-s-string) |
368 click-word click-count) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42602
diff
changeset
|
369 |
19079 | 370 (if (and |
371 (viper-multiclick-p) | |
372 ;; This trick checks if there is a pending mouse event if so, we use | |
373 ;; this latter event and discard the current mouse click If the next | |
374 ;; pending event is not a mouse event, we execute the current mouse | |
375 ;; event | |
376 (progn | |
377 (viper-read-event) | |
378 (viper-mouse-event-p last-input-event))) | |
379 (progn ; interrupted wait | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
22285
diff
changeset
|
380 (setq viper-global-prefix-argument (or viper-global-prefix-argument |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
22285
diff
changeset
|
381 arg) |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
22285
diff
changeset
|
382 ;; remember command that was before the multiclick |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
22285
diff
changeset
|
383 this-command last-command) |
19079 | 384 ;; make sure we counted this event---needed for XEmacs only |
385 (viper-event-click-count click)) | |
386 ;; uninterrupted wait | |
387 (setq click-count (viper-event-click-count click)) | |
388 (setq click-word (viper-mouse-click-get-word click nil click-count)) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42602
diff
changeset
|
389 |
19079 | 390 (if (> click-count 1) |
391 (setq arg viper-global-prefix-argument | |
392 viper-global-prefix-argument nil)) | |
393 (setq arg (or arg 1)) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42602
diff
changeset
|
394 |
19079 | 395 (viper-deactivate-mark) |
396 (if (or (not (string= click-word viper-s-string)) | |
397 (not (markerp viper-search-start-marker)) | |
398 (not (equal (marker-buffer viper-search-start-marker) | |
399 (current-buffer))) | |
400 (not (eq last-command 'viper-mouse-click-search-word))) | |
10789 | 401 (progn |
19079 | 402 (setq viper-search-start-marker (point-marker) |
403 viper-local-search-start-marker viper-search-start-marker | |
404 viper-mouse-click-search-noerror t | |
405 viper-mouse-click-search-limit nil) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42602
diff
changeset
|
406 |
19079 | 407 ;; make search string known to Viper |
408 (setq viper-s-string (if viper-re-search | |
409 (regexp-quote click-word) | |
410 click-word)) | |
411 (if (not (string= viper-s-string (car viper-search-history))) | |
412 (setq viper-search-history | |
413 (cons viper-s-string viper-search-history))) | |
414 )) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42602
diff
changeset
|
415 |
19079 | 416 (push-mark nil t) |
417 (while (> arg 0) | |
418 (viper-forward-word 1) | |
419 (condition-case nil | |
420 (progn | |
421 (if (not (search-forward | |
422 click-word viper-mouse-click-search-limit | |
423 viper-mouse-click-search-noerror)) | |
424 (progn | |
425 (setq viper-mouse-click-search-noerror nil) | |
426 (setq viper-mouse-click-search-limit | |
427 (save-excursion | |
428 (if (and | |
429 (markerp viper-local-search-start-marker) | |
430 (marker-buffer viper-local-search-start-marker)) | |
431 (goto-char viper-local-search-start-marker)) | |
432 (viper-line-pos 'end))) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42602
diff
changeset
|
433 |
19079 | 434 (goto-char (point-min)) |
435 (search-forward click-word | |
436 viper-mouse-click-search-limit nil))) | |
437 (goto-char (match-beginning 0)) | |
438 (message "Searching for: %s" viper-s-string) | |
439 (if (<= arg 1) ; found the right occurrence of the pattern | |
440 (progn | |
441 (viper-adjust-window) | |
442 (viper-flash-search-pattern))) | |
443 ) | |
444 (error (beep 1) | |
445 (if (or (not (string= click-word previous-search-string)) | |
446 (not (eq last-command 'viper-mouse-click-search-word))) | |
447 (message "`%s': String not found in %s" | |
448 viper-s-string (buffer-name (current-buffer))) | |
449 (message | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
22285
diff
changeset
|
450 "`%s': Last occurrence in %s. Back to beginning of search" |
19079 | 451 click-word (buffer-name (current-buffer))) |
452 (setq arg 1) ;; to terminate the loop | |
453 (sit-for 2)) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42602
diff
changeset
|
454 (setq viper-mouse-click-search-noerror t) |
19079 | 455 (setq viper-mouse-click-search-limit nil) |
456 (if (and (markerp viper-local-search-start-marker) | |
457 (marker-buffer viper-local-search-start-marker)) | |
458 (goto-char viper-local-search-start-marker)))) | |
459 (setq arg (1- arg))) | |
460 )))) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42602
diff
changeset
|
461 |
19079 | 462 (defun viper-mouse-catch-frame-switch (event arg) |
10789 | 463 "Catch the event of switching frame. |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
22285
diff
changeset
|
464 Usually is bound to a `down-mouse' event to work properly. See sample |
18129 | 465 bindings in the Viper manual." |
10789 | 466 (interactive "e\nP") |
19079 | 467 (setq viper-frame-of-focus nil) |
468 ;; pass prefix arg along to viper-mouse-click-search/insert-word | |
10789 | 469 (setq prefix-arg arg) |
470 (if (eq last-command 'handle-switch-frame) | |
19079 | 471 (setq viper-frame-of-focus viper-current-frame-saved)) |
472 ;; make Emacs forget that it executed viper-mouse-catch-frame-switch | |
10789 | 473 (setq this-command last-command)) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42602
diff
changeset
|
474 |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
22285
diff
changeset
|
475 ;; Called just before switching frames. Saves the old selected frame. |
10789 | 476 ;; Sets last-command to handle-switch-frame (this is done automatically in |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42602
diff
changeset
|
477 ;; Emacs. |
10789 | 478 ;; The semantics of switching frames is different in Emacs and XEmacs. |
479 ;; In Emacs, if you select-frame A while mouse is over frame B and then | |
480 ;; start typing, input goes to frame B, which becomes selected. | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
22285
diff
changeset
|
481 ;; In XEmacs, input will go to frame A. This may be a bug in one of the |
10789 | 482 ;; Emacsen, but also may be a design decision. |
483 ;; Also, in Emacs sending input to frame B generates handle-switch-frame | |
484 ;; event, while in XEmacs it doesn't. | |
485 ;; All this accounts for the difference in the behavior of | |
19079 | 486 ;; viper-mouse-click-* commands when you click in a frame other than the one |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
22285
diff
changeset
|
487 ;; that was the last to receive input. In Emacs, focus will be in frame A |
19079 | 488 ;; until you do something other than viper-mouse-click-* command. |
10789 | 489 ;; In XEmacs, you have to manually select frame B (with the mouse click) in |
490 ;; order to shift focus to frame B. | |
19079 | 491 (defsubst viper-remember-current-frame (frame) |
12140
75379a19c5d5
Changed vip-*-frame-* to *-frame-*, incorporated overlay strings,
Karl Heuer <kwzh@gnu.org>
parents:
11288
diff
changeset
|
492 (setq last-command 'handle-switch-frame |
19079 | 493 viper-current-frame-saved (selected-frame))) |
494 | |
495 | |
496 ;; The key is of the form (MODIFIER ... BUTTON-NUMBER) | |
497 ;; Converts into a valid mouse button spec for the appropriate version of | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
22285
diff
changeset
|
498 ;; Emacs. EVENT-TYPE is either `up' or `down'. Up returns button-up key; down |
19079 | 499 ;; returns button-down key. |
500 (defun viper-parse-mouse-key (key-var event-type) | |
501 (let ((key (eval key-var)) | |
502 button-spec meta-spec shift-spec control-spec key-spec) | |
503 (if (null key) | |
504 ;; just return nil | |
505 () | |
506 (setq button-spec | |
507 (cond ((memq 1 key) | |
85972
51aa47312c4b
* ediff-init.el (ediff-xemacs-p, ediff-emacs-p): Remove.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78218
diff
changeset
|
508 (if (featurep 'emacs) |
19079 | 509 (if (eq 'up event-type) |
510 "mouse-1" "down-mouse-1") | |
511 (if (eq 'up event-type) | |
512 'button1up 'button1))) | |
513 ((memq 2 key) | |
85972
51aa47312c4b
* ediff-init.el (ediff-xemacs-p, ediff-emacs-p): Remove.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78218
diff
changeset
|
514 (if (featurep 'emacs) |
19079 | 515 (if (eq 'up event-type) |
516 "mouse-2" "down-mouse-2") | |
517 (if (eq 'up event-type) | |
518 'button2up 'button2))) | |
519 ((memq 3 key) | |
85972
51aa47312c4b
* ediff-init.el (ediff-xemacs-p, ediff-emacs-p): Remove.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78218
diff
changeset
|
520 (if (featurep 'emacs) |
19079 | 521 (if (eq 'up event-type) |
522 "mouse-3" "down-mouse-3") | |
523 (if (eq 'up event-type) | |
524 'button3up 'button3))) | |
525 (t (error | |
526 "%S: invalid button number, %S" key-var key))) | |
527 meta-spec | |
528 (if (memq 'meta key) | |
85972
51aa47312c4b
* ediff-init.el (ediff-xemacs-p, ediff-emacs-p): Remove.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78218
diff
changeset
|
529 (if (featurep 'emacs) "M-" 'meta) |
51aa47312c4b
* ediff-init.el (ediff-xemacs-p, ediff-emacs-p): Remove.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78218
diff
changeset
|
530 (if (featurep 'emacs) "" nil)) |
19079 | 531 shift-spec |
532 (if (memq 'shift key) | |
85972
51aa47312c4b
* ediff-init.el (ediff-xemacs-p, ediff-emacs-p): Remove.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78218
diff
changeset
|
533 (if (featurep 'emacs) "S-" 'shift) |
51aa47312c4b
* ediff-init.el (ediff-xemacs-p, ediff-emacs-p): Remove.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78218
diff
changeset
|
534 (if (featurep 'emacs) "" nil)) |
19079 | 535 control-spec |
536 (if (memq 'control key) | |
85972
51aa47312c4b
* ediff-init.el (ediff-xemacs-p, ediff-emacs-p): Remove.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78218
diff
changeset
|
537 (if (featurep 'emacs) "C-" 'control) |
51aa47312c4b
* ediff-init.el (ediff-xemacs-p, ediff-emacs-p): Remove.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78218
diff
changeset
|
538 (if (featurep 'emacs) "" nil))) |
19079 | 539 |
85972
51aa47312c4b
* ediff-init.el (ediff-xemacs-p, ediff-emacs-p): Remove.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78218
diff
changeset
|
540 (setq key-spec (if (featurep 'emacs) |
19079 | 541 (vector |
542 (intern | |
543 (concat | |
544 control-spec meta-spec shift-spec button-spec))) | |
545 (vector | |
546 (delq | |
547 nil | |
548 (list | |
549 control-spec meta-spec shift-spec button-spec))))) | |
550 ))) | |
551 | |
552 (defun viper-unbind-mouse-search-key () | |
553 (if viper-mouse-up-search-key-parsed | |
554 (global-unset-key viper-mouse-up-search-key-parsed)) | |
555 (if viper-mouse-down-search-key-parsed | |
556 (global-unset-key viper-mouse-down-search-key-parsed)) | |
557 (setq viper-mouse-up-search-key-parsed nil | |
558 viper-mouse-down-search-key-parsed nil)) | |
559 | |
560 (defun viper-unbind-mouse-insert-key () | |
561 (if viper-mouse-up-insert-key-parsed | |
562 (global-unset-key viper-mouse-up-insert-key-parsed)) | |
563 (if viper-mouse-down-insert-key-parsed | |
564 (global-unset-key viper-mouse-down-insert-key-parsed)) | |
565 (setq viper-mouse-up-insert-key-parsed nil | |
566 viper-mouse-down-insert-key-parsed nil)) | |
567 | |
568 ;; If FORCE, bind even if this mouse action is already bound to something else | |
569 (defun viper-bind-mouse-search-key (&optional force) | |
570 (setq viper-mouse-up-search-key-parsed | |
571 (viper-parse-mouse-key 'viper-mouse-search-key 'up) | |
572 viper-mouse-down-search-key-parsed | |
573 (viper-parse-mouse-key 'viper-mouse-search-key 'down)) | |
574 (cond ((or (null viper-mouse-up-search-key-parsed) | |
575 (null viper-mouse-down-search-key-parsed)) | |
576 nil) ; just quit | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42602
diff
changeset
|
577 ((and (null force) |
19079 | 578 (key-binding viper-mouse-up-search-key-parsed) |
579 (not (eq (key-binding viper-mouse-up-search-key-parsed) | |
580 'viper-mouse-click-search-word))) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42602
diff
changeset
|
581 (message |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
22285
diff
changeset
|
582 "%S already bound to a mouse event. Viper mouse-search feature disabled" |
19079 | 583 viper-mouse-up-search-key-parsed)) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42602
diff
changeset
|
584 ((and (null force) |
19079 | 585 (key-binding viper-mouse-down-search-key-parsed) |
586 (not (eq (key-binding viper-mouse-down-search-key-parsed) | |
587 'viper-mouse-catch-frame-switch))) | |
588 (message | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
22285
diff
changeset
|
589 "%S already bound to a mouse event. Viper mouse-search feature disabled" |
19079 | 590 viper-mouse-down-search-key-parsed)) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42602
diff
changeset
|
591 (t |
19079 | 592 (global-set-key viper-mouse-up-search-key-parsed |
593 'viper-mouse-click-search-word) | |
594 (global-set-key viper-mouse-down-search-key-parsed | |
595 'viper-mouse-catch-frame-switch)))) | |
596 | |
597 ;; If FORCE, bind even if this mouse action is already bound to something else | |
598 (defun viper-bind-mouse-insert-key (&optional force) | |
599 (setq viper-mouse-up-insert-key-parsed | |
600 (viper-parse-mouse-key 'viper-mouse-insert-key 'up) | |
601 viper-mouse-down-insert-key-parsed | |
602 (viper-parse-mouse-key 'viper-mouse-insert-key 'down)) | |
603 (cond ((or (null viper-mouse-up-insert-key-parsed) | |
604 (null viper-mouse-down-insert-key-parsed)) | |
605 nil) ; just quit | |
606 ((and (null force) | |
607 (key-binding viper-mouse-up-insert-key-parsed) | |
608 (not (eq (key-binding viper-mouse-up-insert-key-parsed) | |
609 'viper-mouse-click-insert-word))) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42602
diff
changeset
|
610 (message |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
22285
diff
changeset
|
611 "%S already bound to a mouse event. Viper mouse-insert feature disabled" |
19079 | 612 viper-mouse-up-insert-key-parsed)) |
613 ((and (null force) | |
614 (key-binding viper-mouse-down-insert-key-parsed) | |
615 (not (eq (key-binding viper-mouse-down-insert-key-parsed) | |
616 'viper-mouse-catch-frame-switch))) | |
617 (message | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
22285
diff
changeset
|
618 "%S already bound to a mouse event. Viper mouse-insert feature disabled" |
19079 | 619 viper-mouse-down-insert-key-parsed)) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42602
diff
changeset
|
620 (t |
19079 | 621 (global-set-key viper-mouse-up-insert-key-parsed |
622 'viper-mouse-click-insert-word) | |
623 (global-set-key viper-mouse-down-insert-key-parsed | |
624 'viper-mouse-catch-frame-switch)))) | |
625 | |
626 (defun viper-reset-mouse-search-key (symb val) | |
627 (viper-unbind-mouse-search-key) | |
628 (set symb val) | |
629 (viper-bind-mouse-search-key 'force)) | |
630 | |
631 (defun viper-reset-mouse-insert-key (symb val) | |
632 (viper-unbind-mouse-insert-key) | |
633 (set symb val) | |
634 (viper-bind-mouse-insert-key 'force)) | |
635 | |
636 | |
637 (defcustom viper-mouse-search-key '(meta shift 1) | |
638 "*Key used to click-search in Viper. | |
19908
3a37d4348914
(viper-mouse-search-key, viper-mouse-insert-key): Fix customize type.
Richard M. Stallman <rms@gnu.org>
parents:
19756
diff
changeset
|
639 This must be a list that specifies the mouse button and modifiers. |
3a37d4348914
(viper-mouse-search-key, viper-mouse-insert-key): Fix customize type.
Richard M. Stallman <rms@gnu.org>
parents:
19756
diff
changeset
|
640 The supported modifiers are `meta', `shift', and `control'. |
3a37d4348914
(viper-mouse-search-key, viper-mouse-insert-key): Fix customize type.
Richard M. Stallman <rms@gnu.org>
parents:
19756
diff
changeset
|
641 For instance, `(meta shift 1)' means that holding the meta and shift |
3a37d4348914
(viper-mouse-search-key, viper-mouse-insert-key): Fix customize type.
Richard M. Stallman <rms@gnu.org>
parents:
19756
diff
changeset
|
642 keys down and clicking on a word with mouse button 1 |
3a37d4348914
(viper-mouse-search-key, viper-mouse-insert-key): Fix customize type.
Richard M. Stallman <rms@gnu.org>
parents:
19756
diff
changeset
|
643 will search for that word in the buffer that was current before the click. |
3a37d4348914
(viper-mouse-search-key, viper-mouse-insert-key): Fix customize type.
Richard M. Stallman <rms@gnu.org>
parents:
19756
diff
changeset
|
644 This buffer may be different from the one where the click occurred." |
19942
b960ef5a1ecc
(viper-mouse-search-key): Fix custom type.
Richard M. Stallman <rms@gnu.org>
parents:
19908
diff
changeset
|
645 :type '(list (set :inline t :tag "Modifiers" :format "%t: %v" |
b960ef5a1ecc
(viper-mouse-search-key): Fix custom type.
Richard M. Stallman <rms@gnu.org>
parents:
19908
diff
changeset
|
646 (const :format "%v " meta) |
b960ef5a1ecc
(viper-mouse-search-key): Fix custom type.
Richard M. Stallman <rms@gnu.org>
parents:
19908
diff
changeset
|
647 (const :format "%v " shift) |
b960ef5a1ecc
(viper-mouse-search-key): Fix custom type.
Richard M. Stallman <rms@gnu.org>
parents:
19908
diff
changeset
|
648 (const control)) |
b960ef5a1ecc
(viper-mouse-search-key): Fix custom type.
Richard M. Stallman <rms@gnu.org>
parents:
19908
diff
changeset
|
649 (integer :tag "Button")) |
19079 | 650 :set 'viper-reset-mouse-search-key |
651 :group 'viper-mouse) | |
652 | |
653 (defcustom viper-mouse-insert-key '(meta shift 2) | |
654 "*Key used to click-insert in Viper. | |
19908
3a37d4348914
(viper-mouse-search-key, viper-mouse-insert-key): Fix customize type.
Richard M. Stallman <rms@gnu.org>
parents:
19756
diff
changeset
|
655 Must be a list that specifies the mouse button and modifiers. |
3a37d4348914
(viper-mouse-search-key, viper-mouse-insert-key): Fix customize type.
Richard M. Stallman <rms@gnu.org>
parents:
19756
diff
changeset
|
656 The supported modifiers are `meta', `shift', and `control'. |
3a37d4348914
(viper-mouse-search-key, viper-mouse-insert-key): Fix customize type.
Richard M. Stallman <rms@gnu.org>
parents:
19756
diff
changeset
|
657 For instance, `(meta shift 2)' means that holding the meta and shift keys |
3a37d4348914
(viper-mouse-search-key, viper-mouse-insert-key): Fix customize type.
Richard M. Stallman <rms@gnu.org>
parents:
19756
diff
changeset
|
658 down, and clicking on a word with mouse button 2, will insert that word |
3a37d4348914
(viper-mouse-search-key, viper-mouse-insert-key): Fix customize type.
Richard M. Stallman <rms@gnu.org>
parents:
19756
diff
changeset
|
659 at the cursor in the buffer that was current just before the click. |
3a37d4348914
(viper-mouse-search-key, viper-mouse-insert-key): Fix customize type.
Richard M. Stallman <rms@gnu.org>
parents:
19756
diff
changeset
|
660 This buffer may be different from the one where the click occurred." |
19942
b960ef5a1ecc
(viper-mouse-search-key): Fix custom type.
Richard M. Stallman <rms@gnu.org>
parents:
19908
diff
changeset
|
661 :type '(list (set :inline t :tag "Modifiers" :format "%t: %v" |
b960ef5a1ecc
(viper-mouse-search-key): Fix custom type.
Richard M. Stallman <rms@gnu.org>
parents:
19908
diff
changeset
|
662 (const :format "%v " meta) |
b960ef5a1ecc
(viper-mouse-search-key): Fix custom type.
Richard M. Stallman <rms@gnu.org>
parents:
19908
diff
changeset
|
663 (const :format "%v " shift) |
b960ef5a1ecc
(viper-mouse-search-key): Fix custom type.
Richard M. Stallman <rms@gnu.org>
parents:
19908
diff
changeset
|
664 (const control)) |
b960ef5a1ecc
(viper-mouse-search-key): Fix custom type.
Richard M. Stallman <rms@gnu.org>
parents:
19908
diff
changeset
|
665 (integer :tag "Button")) |
19079 | 666 :set 'viper-reset-mouse-insert-key |
667 :group 'viper-mouse) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42602
diff
changeset
|
668 |
10789 | 669 |
670 | |
18839 | 671 ;;; Local Variables: |
19079 | 672 ;;; eval: (put 'viper-deflocalvar 'lisp-indent-hook 'defun) |
18839 | 673 ;;; End: |
674 | |
10789 | 675 |
52401 | 676 ;;; arch-tag: e56b2390-06c4-4dd1-96f5-c7876e2d8c2f |
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
26263
diff
changeset
|
677 ;;; viper-mous.el ends here |