Disable fill-column-indicator display.

Fixes #343
master
Davor Rotim 7 years ago committed by Oleh Krehel
parent b14aaf71cb
commit 435c55e9f7
  1. 2
      lv.el

@ -55,6 +55,7 @@ Only the background color is significant."
"Holds the current LV window.") "Holds the current LV window.")
(defvar display-line-numbers) (defvar display-line-numbers)
(defvar display-fill-column-indicator)
(defun lv-window () (defun lv-window ()
"Ensure that LV window is live and return it." "Ensure that LV window is live and return it."
@ -76,6 +77,7 @@ Only the background color is significant."
(setq header-line-format nil) (setq header-line-format nil)
(setq cursor-type nil) (setq cursor-type nil)
(setq display-line-numbers nil) (setq display-line-numbers nil)
(setq display-fill-column-indicator nil)
(set-window-dedicated-p lv-wnd t) (set-window-dedicated-p lv-wnd t)
(set-window-parameter lv-wnd 'no-other-window t)) (set-window-parameter lv-wnd 'no-other-window t))
(select-window ori))))) (select-window ori)))))

Loading…
Cancel
Save