Variable: viper-mouse-search-key

viper-mouse-search-key is a customizable variable defined in viper-mous.el.gz.

Value

(meta shift 1)

Documentation

Key used to click-search in Viper.

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.

Source Code

;; Defined in /usr/src/emacs/lisp/emulation/viper-mous.el.gz
(defcustom viper-mouse-search-key '(meta shift 1)
  "Key used to click-search in Viper.
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."
  :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-search-key)