зеркало из
https://github.com/iharh/notes.git
synced 2025-10-30 13:16:07 +02:00
18 строки
391 B
EmacsLisp
18 строки
391 B
EmacsLisp
;(setq
|
|
; enable-recursive-minibuffers nil ;; allow mb cmds in the mb
|
|
;; max-mini-window-height .25 ;; max 2 lines
|
|
; max-mini-window-height .50
|
|
; max-mini-window-height nil
|
|
; minibuffer-scroll-window nil
|
|
; resize-mini-windows nil
|
|
;)
|
|
|
|
(add-hook 'minibuffer-setup-hook
|
|
(function
|
|
(lambda ()
|
|
(make-local-variable 'truncate-lines)
|
|
(setq truncate-lines nil)
|
|
)
|
|
)
|
|
)
|