Re: vim.vim organization

2012-11-01 Fir de Conversatie Tony Mechelynck
On 01/11/12 01:19, Kartik Agaram wrote: I notice many keywords in runtime/syntax/vim.vim are split across multiple lines. For example, I assume all the lines beginning with syn keyword vimCommand could logically be assumed to be a single (very long) command. Is that accurate? If this is

Re: vim.vim organization

2012-11-01 Fir de Conversatie Kartik Agaram
You're likely looking at the automatically generated keyword lists; vimCommands are generated automatically. The keywords are sorted in the usual ascending alphabetical order with 100 keywords per line. Yeah I see the comments now that these lines are auto-generated: syn keyword vimCommand

vim.vim organization

2012-10-31 Fir de Conversatie Kartik Agaram
I notice many keywords in runtime/syntax/vim.vim are split across multiple lines. For example, I assume all the lines beginning with syn keyword vimCommand could logically be assumed to be a single (very long) command. Is that accurate? If this is correct, I'm curious if there's some pattern to

Re: vim.vim organization

2012-10-31 Fir de Conversatie Charles E Campbell Jr
Kartik Agaram wrote: I notice many keywords in runtime/syntax/vim.vim are split across multiple lines. For example, I assume all the lines beginning with syn keyword vimCommand could logically be assumed to be a single (very long) command. Is that accurate? If this is correct, I'm curious if