Re: Tweaking t_Co to configure colorscheme

2019-04-30 Thread Tony Mechelynck
On Tue, Apr 30, 2019 at 11:22 PM 'Lifepillar' via vim_use wrote: > > I have made some colorschemes that use colors 0-15 or 16-256 according to the > value of t_Co or based on a user option: > > if &t_Co < 256 || g:mytheme_force16colors = 1 > # Define hi groups with colors 0-15 > else

Re: Grouping digraphs

2019-04-30 Thread 'Lifepillar' via vim_use
On 30 Apr 2019, at 13:13, Tony Mechelynck wrote: > But (@Lifepillar) Christian is too modest — another great tool for > (among others) searching for and identifying Unicode characters is his > own unicode.vim plugin (which includes online help according to the > great Vim tradition): > * stable v

Tweaking t_Co to configure colorscheme

2019-04-30 Thread 'Lifepillar' via vim_use
I have made some colorschemes that use colors 0-15 or 16-256 according to the value of t_Co or based on a user option: if &t_Co < 256 || g:mytheme_force16colors = 1 # Define hi groups with colors 0-15 else # Define hi groups with colors 16-256 endif Setting t_Co at runtime

Re: Grouping digraphs

2019-04-30 Thread Tony Mechelynck
On Tue, Apr 30, 2019 at 7:45 AM Christian Brabandt wrote: > On Mo, 29 Apr 2019, 'Lifepillar' via vim_use wrote: > > > I recall reading about a proposal (by C. Brabandt, I think) for grouping > > the presentation of digraphs. I don’t seem to be able to find that > > discussion, however. Does anyone