Closed viccuad closed 9 years ago
First off, thanks for reporting.
gj
tries to go one display line down, but Startify has some autocmds in effect so that the [x]
can never be left. The cursor actually goes down but jumps back immediately. Vim is just clever enough not to redraw the screen in between, so one can't see it.
The easiest solution would be to just force some new and local mappings in the Startify buffer, e.g.:
if !empty(mapcheck('j', 'n'))
nnoremap <buffer> j j
endif
It should be fixed now.
Awesome! many thanks!
:shipit:
Well, I think the says it all.
To reproduce:
:map j gj
resize your vim terminal window to something thin enough so wrapping happens,
And you will notice that pressing "j" you can't go from [2] to [3].