Variable: viper-mouse-insert-key
viper-mouse-insert-key is a customizable variable defined in
viper-mous.el.gz.
Value
(meta shift 2)
Documentation
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.
Source Code
;; Defined in /usr/src/emacs/lisp/emulation/viper-mous.el.gz
(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 (set :inline t :tag "Modifiers" :format "%t: %v"
(const :format "%v " meta)
(const :format "%v " shift)
(const control))
(integer :tag "Button"))
:set #'viper-reset-mouse-insert-key)