Re: Does the ".cl" extension have any special meaning to vim?

2017-08-29 Thread Barry Gold
On 8/28/2017 11:40 PM, Christian Brabandt wrote: On Mo, 28 Aug 2017, Barry Gold wrote: What does vim think an extension of ".cl" means? :verbose set filetype? according to $VIMRUNTIME/filetype.vim .cl extensions seems to suggest common lisp files. So Vim sets the lisp filetype. Now you didn

Re: Does the ".cl" extension have any special meaning to vim?

2017-08-29 Thread Christian Brabandt
On Di, 29 Aug 2017, Barry Gold wrote: > > On 8/28/2017 11:40 PM, Christian Brabandt wrote: > >On Mo, 28 Aug 2017, Barry Gold wrote: > > > >>What does vim think an extension of ".cl" means? > >:verbose set filetype? > > > >according to $VIMRUNTIME/filetype.vim .cl extensions seems to suggest > >c

Re: how to set background color for vim terminal

2017-08-29 Thread Marcin Szamotulski
On 16:15 Mon 28 Aug , Bram Moolenaar wrote: > > Lifepillar wrote: > > > On 28/08/2017 00:13, Bram Moolenaar wrote: > > > > > > Marcin Szamotulski wrote: > > > > > >> I was looking how to set up background color for the `:termainal` (on > > >> linux). I cannot find proper documentation on h

Re: Controlling the display of a syntax highlighting group

2017-08-29 Thread Jeffery Small
I previously asked how I could set up a toggle for syntax highlighting of non-ASCII characters. I was having problems clearing a highlighting group and then never being able to reactivate it. Ben Fritz suggested using the matchadd()/matchdelete() functions for the job. That looks like a good idea

Re: Controlling the display of a syntax highlighting group

2017-08-29 Thread cjsmall
I wrote: > [P.S.:  I originally sent this to which is the address listed > on the official Vim mailing list page, but it never showed up.  Is that still > valid, or must vim_use@googlegroups.com now be used?] As you can see above, after a long delay (3 days), the original message (duplicte)to v

Re: Evoking the option for :help in a mapping

2017-08-29 Thread porphyry5
On Monday, August 28, 2017 at 1:32:32 PM UTC-7, Tony Mechelynck wrote: > On Mon, Aug 28, 2017 at 7:02 PM, Graham Lawrence wrote: > > I have the customary mappings for :help, > > > > nmap :exec "help " . expand("") > > nmap :exec "help " . expand("") > > > > and have been trying to develo

Re: Controlling the display of a syntax highlighting group

2017-08-29 Thread cjsmall
One more addendum: In the external file, I changed the line: highlight NONASCII ctermbg=13 to: highlight NONASCII ctermbg=13 guibg=Magenta so that the command would work in gvim as well as vim. -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply b

Re: Does the ".cl" extension have any special meaning to vim?

2017-08-29 Thread Barry Gold
On 8/28/2017 11:40 PM, Christian Brabandt wrote: On Mo, 28 Aug 2017, Barry Gold wrote: What does vim think an extension of ".cl" means? :verbose set filetype? according to $VIMRUNTIME/filetype.vim .cl extensions seems to suggest common lisp files. So Vim sets the lisp filetype. Now you didn'

Re: Does the ".cl" extension have any special meaning to vim?

2017-08-29 Thread Christian Brabandt
On Di, 29 Aug 2017, Barry Gold wrote: > On 8/28/2017 11:40 PM, Christian Brabandt wrote: > >On Mo, 28 Aug 2017, Barry Gold wrote: > > > >>What does vim think an extension of ".cl" means? > >:verbose set filetype? > > > >according to $VIMRUNTIME/filetype.vim .cl extensions seems to suggest > >comm