Parcourir la source

Add highlight-region-text

master
10sr il y a 6 ans
Parent
révision
80f8901b85
Signé par: 10sr ID de la clé GPG: 7BEC428194130EB2
1 fichiers modifiés avec 8 ajouts et 0 suppressions
  1. +8
    -0
      emacs.el

+ 8
- 0
emacs.el Voir le fichier

@@ -639,6 +639,14 @@ found, otherwise returns nil."
;; M-x highlight-* to highlight things
(global-hi-lock-mode 1)

(unless (fboundp 'highlight-region-text)
(defun highlight-region-text (beg end)
"Highlight text between BEG and END."
(interactive "r")
(highlight-regexp (regexp-quote (buffer-substring-no-properties beg
end)))
(setq deactivate-mark t)))

(when (safe-require-or-eval 'auto-highlight-symbol)
(set-variable 'ahs-idle-interval 0.6)
(global-auto-highlight-symbol-mode 1))


Chargement…
Annuler
Enregistrer