lv.el (lv-window): Don't modify the buffer-list order

Fixes #356
Fixes #357
master
Stephen Bach 6 years ago committed by Oleh Krehel
parent 9db28034d7
commit e3beffdd80
  1. 9
      lv.el

@ -76,10 +76,11 @@ Only the background color is significant."
(select-window
(let ((ignore-window-parameters t))
(split-window
(frame-root-window) -1 'below))))
(frame-root-window) -1 'below))
'norecord))
(if (setq buf (get-buffer " *LV*"))
(switch-to-buffer buf)
(switch-to-buffer " *LV*")
(switch-to-buffer buf 'norecord)
(switch-to-buffer " *LV*" 'norecord)
(set-window-hscroll lv-wnd 0)
(setq window-size-fixed t)
(setq mode-line-format nil)
@ -91,7 +92,7 @@ Only the background color is significant."
(set-window-dedicated-p lv-wnd t)
(set-window-parameter lv-wnd 'no-other-window t)
(run-hooks 'lv-window-hook))
(select-window ori)))))
(select-window ori 'norecord)))))
(defvar golden-ratio-mode)

Loading…
Cancel
Save