Open blueyed opened 9 years ago
I can't reproduce the issue with the following vimrc
call plug#begin('~/.vim/plugged')
Plug 'junegunn/vim-pseudocl'
Plug 'junegunn/vim-oblique'
call plug#end()
set foldenable foldmethod=syntax
Am I missing something? The default foldopen
contains search
.
Same issue here, I mainly write python so I have
set fdm=indent
I've noticed that folds are not opened during search with
n
when vim-oblique is being used.I think it would be a good fix to call
zv
automatically in case'foldopen'
containssearch
.I am not sure if there is a way to undo
zv
when going to the next/prev search result (which I assume Vim does for its internaln
/N
).It works with
foldopen=all
btw (!), and this appears to be different from enabling all options separately (i.e. addingjump
andinsert
to the default setting).