Sfoglia il codice sorgente

Remove mark in minibuffer

master
10sr 4 anni fa
parent
commit
847685397c
Firmato da: 10sr ID Chiave GPG: 7BEC428194130EB2
1 ha cambiato i file con 5 aggiunte e 0 eliminazioni
  1. +5
    -0
      emacs.el

+ 5
- 0
emacs.el Vedi File

@@ -543,6 +543,11 @@ Otherwize hook it."
(unless (or (mark t)
(minibufferp))
(push-mark))))
(add-hook 'switch-buffer-functions
(lambda (&rest _)
(when (minibufferp)
;; Remove mark in minibuffer
(set-mark nil))))

(when (fboundp 'back-button-mode)
(back-button-mode 1))


Caricamento…
Annulla
Salva