Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
a27f97ee
Commit
a27f97ee
authored
Sep 13, 1997
by
Richard M. Stallman
Browse files
(viper-mouse-search-key, viper-mouse-insert-key): Fix customize type.
parent
eabbaad8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
14 deletions
+24
-14
lisp/emulation/viper-mous.el
lisp/emulation/viper-mous.el
+24
-14
No files found.
lisp/emulation/viper-mous.el
View file @
a27f97ee
...
...
@@ -607,25 +607,35 @@ bindings in the Viper manual."
(defcustom viper-mouse-search-key '(meta shift 1)
"*Key used to click-search in Viper.
Must be a list that specifies the mouse button and modifiers. The supported
modifiers are `meta', `shift', and `control'. For instance, `(meta shift 1)'
means that holding the meta and shift keys down and clicking on a word with
mouse button 1 will initiate search for that word in the buffer that was
current just before the click. This buffer may be different from the one where
the click occurred."
:type 'list
This must be a list that specifies the mouse button and modifiers.
The supported modifiers are `meta', `shift', and `control'.
For instance, `(meta shift 1)' means that holding the meta and shift
keys down and clicking on a word with mouse button 1
will search for that word in the buffer that was current before the click.
This buffer may be different from the one where the click occurred."
;; This does not work
;; :type '(list (set :inline meta shift control)
;; integer)
;; This doesn't work either.
;; :type '(set meta shift control 1 2 3)
:type 'sexp
:set 'viper-reset-mouse-search-key
:group 'viper-mouse)
(defcustom viper-mouse-insert-key '(meta shift 2)
"*Key used to click-insert in Viper.
Must be a list that specifies the mouse button and modifiers. The supported
modifiers are `meta', `shift', and `control'. For instance, `(meta shift 2)'
means that holding the meta and shift keys down and clicking on a word with
mouse button 2 will insert that word at the cursor in the buffer that was
current just before the click. This buffer may be different from the one where
the click occurred."
:type 'list
Must be a list that specifies the mouse button and modifiers.
The supported modifiers are `meta', `shift', and `control'.
For instance, `(meta shift 2)' means that holding the meta and shift keys
down, and clicking on a word with mouse button 2, will insert that word
at the cursor in the buffer that was current just before the click.
This buffer may be different from the one where the click occurred."
;; This does not work.
;; :type '(list (set :inline meta shift control)
;; integer)
;; This doesn't work either.
;; :type '(set meta shift control 1 2 3)
:type 'sexp
:set 'viper-reset-mouse-insert-key
:group 'viper-mouse)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment