Sfoglia il codice sorgente

Add highlight-mark stub

master
10sr 4 anni fa
parent
commit
d952d5be57
Firmato da: 10sr ID Chiave GPG: C384BB17CBB19347
1 ha cambiato i file con 13 aggiunte e 0 eliminazioni
  1. +13
    -0
      emacs.el

+ 13
- 0
emacs.el Vedi File

@@ -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:


Caricamento…
Annulla
Salva