Sfoglia il codice sorgente

Fix nyan-mode set length

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

+ 9
- 4
emacs.el Vedi File

@@ -800,11 +800,16 @@ THEM are function and its args."
;; (when f
;; (abbreviate-file-name f))))
))
(defun my-nyan-set-length (&rest _)
"Set `nyan-mode' length to window width."
(set-variable 'nyan-bar-length
(- (window-size nil t) 4)
t))
(add-hook 'window-configuration-change-hook
(lambda ()
(set-variable 'nyan-bar-length
(- (window-size nil t) 4)
t))))
'my-nyan-set-length)
(add-hook 'switch-buffer-functions
'my-nyan-set-length)
)

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; letters, font-lock mode and fonts


Caricamento…
Annulla
Salva