intuited
intuited

Reputation: 24034

Documentation for vim help file markup

Is there a complete source of documentation on the markup format used in vim help files? :help write-local-help provides some info but does not, for example, document the markup used to indicate quoted sections.

update: I've also discovered this post on the vim-use mailing list which provides slightly more info than the afore-mentioned help entry.

Upvotes: 17

Views: 5259

Answers (2)

JBert
JBert

Reputation: 3390

It seems everyone still sticks to reading another help file or reading the syntax file.

I did find the following two additional references:

Upvotes: 7

Benoit
Benoit

Reputation: 79185

:e $VIMRUNTIME/syntax/help.vim

This will indicate you how vim colours its own help files.

:help write-local-help

will also show you an example.

Upvotes: 4

Related Questions