mirror of
https://github.com/preservim/nerdtree.git
synced 2025-11-09 11:53:48 -05:00
only set relativenumber for vim >= 7.3
This commit is contained in:
@@ -2664,8 +2664,10 @@ function! s:initNerdTreeInPlace(dir)
|
|||||||
setlocal nu
|
setlocal nu
|
||||||
else
|
else
|
||||||
setlocal nonu
|
setlocal nonu
|
||||||
|
if v:version >= 703
|
||||||
setlocal nornu
|
setlocal nornu
|
||||||
endif
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
iabc <buffer>
|
iabc <buffer>
|
||||||
|
|
||||||
@@ -2901,8 +2903,10 @@ function! s:createTreeWin()
|
|||||||
setlocal nu
|
setlocal nu
|
||||||
else
|
else
|
||||||
setlocal nonu
|
setlocal nonu
|
||||||
|
if v:version >= 703
|
||||||
setlocal nornu
|
setlocal nornu
|
||||||
endif
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
iabc <buffer>
|
iabc <buffer>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user