Fix #7 - Vim 7.0 compatibility (relativenumber, colorcolumn)

This commit is contained in:
Junegunn Choi
2013-12-05 10:55:23 +09:00
parent ee4ebc8e78
commit acf59a4507

View File

@@ -46,8 +46,13 @@ function! s:init_pad(command)
execute a:command
setlocal buftype=nofile bufhidden=wipe nomodifiable nobuflisted noswapfile
\ nonu nornu nocursorline colorcolumn=
\ winfixwidth winfixheight statusline=\
\ nonu nocursorline winfixwidth winfixheight statusline=\
if exists('&rnu')
setlocal nornu
endif
if exists('&colorcolumn')
setlocal colorcolumn=
endif
let bufnr = winbufnr(0)
execute winnr('#') . 'wincmd w'
@@ -153,9 +158,16 @@ function! s:goyo_on(width)
endif
if !get(g:, 'goyo_linenr', 0)
set nonu nornu
setlocal nonu
if exists('&rnu')
setlocal nornu
endif
set colorcolumn=
endif
if exists('&colorcolumn')
setlocal colorcolumn=
endif
" Global options
set winwidth=1
set winheight=1
set laststatus=0