-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Description
When using the splitbelow option, I get strange Vim internal errors (E315), for each line, when opening a help topic.
How to reproduce (minimal vimrc - I use vim-plug as plugin manager):
set nocompatible
filetype off
call plug#begin('~/.vim/plugged')
Plug 'aserebryakov/filestyle'
call plug#end()
filetype plugin indent on
syntax on
set splitbelow
The errors look like:
:h syntax.txt
E315: ml_get: invalid lnum: 5319
E315: ml_get: invalid lnum: 5318
...
E315: ml_get: invalid lnum: 1
I suspect the wincmd w commands are to blame, but I don't know how to change them.
Thanks for the plugin!
Reactions are currently unavailable