Should Darkyellow, Lightmagenta, Lightred be defined in colors/lists/default.vim?

2022-03-20 Thread Lifepillar
highlight.c (and, formerly, syntax.c) mention the three colors in the
subject. Curiously, they are not defined in colors/lists/default.vim. Is
that an oversight or is it intentional?

I ask because, AFAICS, all the other colors are defined in default.vim.

Thanks,
Life.

-- 
-- 
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

--- 
You received this message because you are subscribed to the Google Groups 
"vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to vim_use+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/vim_use/t17b4o%248fv%241%40ciao.gmane.io.


Re: Should Darkyellow, Lightmagenta, Lightred be defined in colors/lists/default.vim?

2022-03-20 Thread Lifepillar
On 2022-03-20, Lifepillar  wrote:
> highlight.c (and, formerly, syntax.c) mention the three colors in the
> subject. Curiously, they are not defined in colors/lists/default.vim. Is
> that an oversight or is it intentional?

Aargh, I was looking at syntax.c in an older Vim source. I see that in
highlight.c they are now marked as "No X11". So, that answers my
question.

Life.

-- 
-- 
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

--- 
You received this message because you are subscribed to the Google Groups 
"vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to vim_use+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/vim_use/t17bbi%248fv%242%40ciao.gmane.io.


Re: Should Darkyellow, Lightmagenta, Lightred be defined in colors/lists/default.vim?

2022-03-20 Thread Bram Moolenaar


> highlight.c (and, formerly, syntax.c) mention the three colors in the
> subject. Curiously, they are not defined in colors/lists/default.vim. Is
> that an oversight or is it intentional?
> 
> I ask because, AFAICS, all the other colors are defined in default.vim.

These colors were not in the rgb.txt file used by X11.
I see no reason to omit them, I'll add them.


-- 
FATHER:   Make sure the Prince doesn't leave this room until I come and
  get him.
FIRST GUARD:  Not ... to leave the room ... even if you come and get him.
FATHER:   No.  Until I come and get him.
SECOND GUARD: Hic.
 "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD

 /// Bram Moolenaar -- b...@moolenaar.net -- http://www.Moolenaar.net   \\\
///  \\\
\\\sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ ///
 \\\help me help AIDS victims -- http://ICCF-Holland.org///

-- 
-- 
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

--- 
You received this message because you are subscribed to the Google Groups 
"vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to vim_use+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/vim_use/20220320154355.725041C7837%40moolenaar.net.


Vim script syntax highlighting with line continuations

2022-03-20 Thread Eric Pruitt
Is there a Vim script syntax highlighting file that can handle
statements split across multiple lines? For example, consider the
following:

syn region tmuxUninterpolatedString start=+'+ skip=+\\$+ ...

I would like to split this across multiple lines, to it looks something
like this:

syn region tmuxUninterpolatedString
\ start=+'+
\ skip=+\\$+
...

Unfortunately this breaks syntax highlighting when using Vim, and the
arguments for "start" and "skip" are not highlighted correctly.

Eric

-- 
-- 
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

--- 
You received this message because you are subscribed to the Google Groups 
"vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to vim_use+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/vim_use/20220321005342.GA2451%40sinister.lan.codevat.com.