From 435c55e9f75a8cf3ae6a4ba0c7725e3dc4e5963f Mon Sep 17 00:00:00 2001 From: Davor Rotim Date: Wed, 14 Aug 2019 11:18:25 +0200 Subject: [PATCH] Disable fill-column-indicator display. Fixes #343 --- lv.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lv.el b/lv.el index be8dc5e..57ef10d 100644 --- a/lv.el +++ b/lv.el @@ -55,6 +55,7 @@ Only the background color is significant." "Holds the current LV window.") (defvar display-line-numbers) +(defvar display-fill-column-indicator) (defun lv-window () "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 cursor-type nil) (setq display-line-numbers nil) + (setq display-fill-column-indicator nil) (set-window-dedicated-p lv-wnd t) (set-window-parameter lv-wnd 'no-other-window t)) (select-window ori)))))