Parcourir la source

Add highlight-mark stub

master
10sr il y a 4 ans
Parent
révision
d952d5be57
Signé par: 10sr ID de la clé GPG: C384BB17CBB19347
1 fichiers modifiés avec 13 ajouts et 0 suppressions
  1. +13
    -0
      emacs.el

+ 13
- 0
emacs.el Voir le fichier

@@ -2903,6 +2903,19 @@ Any output will be written to current buffer."
;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; highlight-mark

(defvar-local highlight-mark-last-mark-position nil
"Last mark object.")

(defun highlight-mark-post-command ()
"Update highlight mark on mark change."
(unless (eq (mark t)
highlight-mark-last-mark-position)
(setq highlight-mark-last-mark-position (mark t))
(message "Mark changed! %S"
highlight-mark-last-mark-position)))

(add-hook 'post-command-hook
'highlight-mark-post-command)


;; Local Variables:


Chargement…
Annuler
Enregistrer