소스 검색

Add highlight-mark stub

master
10sr 4 년 전
부모
커밋
d952d5be57
로그인 계정: 10sr GPG 키 ID: C384BB17CBB19347
1개의 변경된 파일13개의 추가작업 그리고 0개의 파일을 삭제
  1. +13
    -0
      emacs.el

+ 13
- 0
emacs.el 파일 보기

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


불러오는 중...
취소
저장