editorconfig-vim icon indicating copy to clipboard operation
editorconfig-vim copied to clipboard

Update FiletypeHook example for installation as Vim 8 package.

Open bcbnz opened this issue 3 years ago • 1 comments

Packages are loaded after vimrc is parsed, so we can't add the hook immediately. Suggest using either an autocommand or a file in an after-directory to add the hook instead.

Fixes: #161 -- note rather than only one method as I suggested in the issue, I've gone with three here. The autocommand might not work for other plugin managers (if they source the file before getting to the autocommand, it won't be triggered). Using the after-directory feels less nice to me, but I included it for anybody who doesn't want to use autocommands or has an older version of vim which doesn't support the SourcePost event.

First time I've tried editing vim help files, hopefully I got all the syntax correct! It appeared to work for me :).

bcbnz avatar Dec 10 '20 22:12 bcbnz

@cxw42 Could you help review this, please? I don't use Vim8 much these days and it's hard for me to review.

xuhdev avatar Jul 21 '21 19:07 xuhdev