From 0a255ee62da085a01ab376fd69a97e0e26df4da0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81rni=20Dagur?= Date: Wed, 8 Aug 2018 01:52:00 +0000 Subject: [PATCH] Clear colorcolumn in vim-plug buffer (#779) --- plug.vim | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plug.vim b/plug.vim index 52c6b2a..5d2b00e 100644 --- a/plug.vim +++ b/plug.vim @@ -763,6 +763,9 @@ function! s:prepare(...) execute 'silent! unmap ' k endfor setlocal buftype=nofile bufhidden=wipe nobuflisted nolist noswapfile nowrap cursorline modifiable nospell + if exists('+colorcolumn') + setlocal colorcolumn= + endif setf vim-plug if exists('g:syntax_on') call s:syntax()