minibufexpl.vim icon indicating copy to clipboard operation
minibufexpl.vim copied to clipboard

`relativenumber` is not turned off

Open d125q opened this issue 10 years ago • 0 comments

This line should be changed from

" [...]
if exists('&norelativenumber')
    set norelativenumber
endif
" [...]

to

" [...]
if exists('&relativenumber')
    set norelativenumber
endif
" [...]

d125q avatar Dec 07 '14 20:12 d125q