Variable: grep-find-abbreviate-properties

grep-find-abbreviate-properties is a variable defined in grep.el.gz.

Value

(face nil display "[...]" mouse-face highlight help-echo "RET, mouse-2: show unabbreviated command" keymap
      (keymap
       (13 . grep-find-toggle-abbreviation)
       (mouse-2 . grep-find-toggle-abbreviation)
       (down-mouse-2 . mouse-set-point))
      abbreviated-command t)

Documentation

Properties of button-like ellipsis on part of rgrep command line.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/grep.el.gz
(defvar grep-find-abbreviate-properties
  (let ((ellipsis (if (char-displayable-p ?…) "[…]" "[...]"))
        (map (make-sparse-keymap)))
    (define-key map [down-mouse-2] 'mouse-set-point)
    (define-key map [mouse-2] 'grep-find-toggle-abbreviation)
    (define-key map "\C-m" 'grep-find-toggle-abbreviation)
    `(face nil display ,ellipsis mouse-face highlight
      help-echo "RET, mouse-2: show unabbreviated command"
      keymap ,map abbreviated-command t))
  "Properties of button-like ellipsis on part of rgrep command line.")