Re: syntax match bug: 'keepend' not officially supported, but required in some cases

2016-09-30 Thread Charles E Campbell
Brett Stahlman wrote: The syntax documentation suggests that the 'keepend' argument applies only to syntax regions, not syntax matches. But if I highlight a buffer containing only the following line... ABCDE ...with the following syntax definitions... syn match A /A/ syn match Inside

Re: syntax match bug: 'keepend' not officially supported, but required in some cases

2016-09-29 Thread Brett Stahlman
On Thu, Sep 29, 2016 at 12:09 PM, Bram Moolenaar wrote: > > Brett Stahlman wrote: > >> The syntax documentation suggests that the 'keepend' argument applies >> only to syntax regions, not syntax matches. But if I highlight a >> buffer containing only the following line... >>

Re: syntax match bug: 'keepend' not officially supported, but required in some cases

2016-09-29 Thread Bram Moolenaar
Brett Stahlman wrote: > The syntax documentation suggests that the 'keepend' argument applies > only to syntax regions, not syntax matches. But if I highlight a > buffer containing only the following line... > > ABCDE > > ...with the following syntax definitions... > > syn match A /A/ > syn

Re: syntax match bug: 'keepend' not officially supported, but required in some cases

2016-09-19 Thread Brett Stahlman
On Mon, Sep 19, 2016 at 9:05 AM, Bram Moolenaar wrote: > > Brett Stahlman wrote: > >> The syntax documentation suggests that the 'keepend' argument applies >> only to syntax regions, not syntax matches. But if I highlight a >> buffer containing only the following line... >> >>

Re: syntax match bug: 'keepend' not officially supported, but required in some cases

2016-09-19 Thread Bram Moolenaar
Brett Stahlman wrote: > The syntax documentation suggests that the 'keepend' argument applies > only to syntax regions, not syntax matches. But if I highlight a > buffer containing only the following line... > > ABCDE > > ...with the following syntax definitions... > > syn match A /A/ > syn

syntax match bug: 'keepend' not officially supported, but required in some cases

2016-09-18 Thread Brett Stahlman
The syntax documentation suggests that the 'keepend' argument applies only to syntax regions, not syntax matches. But if I highlight a buffer containing only the following line... ABCDE ...with the following syntax definitions... syn match A /A/ syn match Inside /[A-Z]\+/ transparent contained