This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;;; Make the mark always visible ('mmv' means 'make mark visible'). | |
;;;; Based on code written by Patrick Gundlach. Fixed with help from Stefan. | |
(defface mmv-face | |
'((t :background "red")) | |
"Face used for showing the mark's position.") | |
(defvar-local mmv-mark-overlay nil "Overlay for showing the mark's position.") | |
(defun mmv-show-mark (&rest _) |