habamax / vim-asciidoctor

Asciidoctor plugin for Vim
MIT License
182 stars 16 forks source link

Quesion: how to tell that habamax/asciidoctor replaced standard syntax (asciidoc) #102

Closed bybor closed 3 years ago

bybor commented 3 years ago

It sometimes seems that gVim lags quite a bit when editing asciidoc files, and I'd like to think that it's because of both standard and this plugin are both enabled, so If I can turn off "standard" one, it will make things better.

But probably vim-asciidoctor overrides/disables a standard rutime?

Could you tell if it's so/how to check/disable standard syntax?

Thanks!

habamax commented 3 years ago

Check output of the :set ft?. If it is asciidoc -- you use default built-in filetype.

vim-asciidoctor sets asciidoctor filetype: image

Gvim might lag if you have "a big" file and folding turned on.

bybor commented 3 years ago

Thanks!