Re: [patch] added entries to CODEOWNERS

2020-12-14 Fir de Conversatie Bram Moolenaar
Dominique wrote: > Attached patch adds a few entries to file .github/CODEOWNERS I'll include it, thanks. -- To keep milk from turning sour: Keep it in the cow. /// Bram Moolenaar -- b...@moolenaar.net -- http://www.Moolenaar.net \\\ ///sponsor Vim, vote for features --

Re: How to create a syntax keyword at runtime?

2020-12-14 Fir de Conversatie Charles Campbell
Ron Aaron wrote: I explained exactly what I mean in the original post. Yes, of course I'm talking about a specific file type, but the specific type is unimportant since it's something I'm creating and not something in the

Patch 8.2.2144

2020-12-14 Fir de Conversatie Bram Moolenaar
Patch 8.2.2144 Problem:Vim9: some corner cases not tested. Solution: Add a few tests. Files: src/testdir/test_vim9_script.vim, src/testdir/test_vim9_cmd.vim *** ../vim-8.2.2143/src/testdir/test_vim9_script.vim2020-12-13 17:50:16.734956500 +0100 ---

Re: How to create a syntax keyword at runtime?

2020-12-14 Fir de Conversatie Ron Aaron
Yes, Maxim; that's exactly what I want to accomplish. And yes, I don't see how to do it in vimscript, but I was hoping someone might have an idea. I suppose an imap on ':' might be able to make it happen with functions. On Monday, December 14, 2020 at 1:41:23 PM UTC+2 Maxim Kim wrote: > If I

Re: How to create a syntax keyword at runtime?

2020-12-14 Fir de Conversatie Maxim Kim
If I get you right I don't think this is possible (or really cumbersome to do) with existing :syntax commands. : foo bar ; <-- foo is defined and highlighted as statement then anywhere else in the text: bla bla bla foo bla bla <-- foo should be highlighted as statement Although, text