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: How to anable lua for vim?

2016-09-29 Thread Dominique Pellé
AM, wrote: > Hi, > > To enable lua for vim I run configure as follows: > > ./configure --prefix=/usr/local --sysconfdir=/etc/vim --with-features=huge > --with-luainterp=dynamic --with-lua-prefix=/usr/bin --enable-luainterp=yes > --enable-pythoninterp > > . Vim compiles

Re: How to anable lua for vim?

2016-09-29 Thread Meino . Cramer
Ben Fritz [16-09-29 19:24]: > On Wednesday, September 28, 2016 at 9:16:34 PM UTC-5, meino.cra...@gmx.de > wrote: > > Hi, > > > > To enable lua for vim I run configure as follows: > > > > ./configure --prefix=/usr/local --sysconfdir=/etc/vim --with-features=huge > >

Re: How to anable lua for vim?

2016-09-29 Thread Ben Fritz
On Wednesday, September 28, 2016 at 9:16:34 PM UTC-5, meino.cra...@gmx.de wrote: > Hi, > > To enable lua for vim I run configure as follows: > > ./configure --prefix=/usr/local --sysconfdir=/etc/vim --with-features=huge > --with-luainterp=dynamic --with-lua-prefix=/usr/bin

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

gvim - not finding gtk icons when starting

2016-09-29 Thread Andy Falanga
I have vim 7.4 installed on PC-BSD. When I start gvim from the command line, I see hundreds (at least 1024 because that's my scroll length) of lines like these: /usr/home/afalanga/.config/qtcurve/gtk-icons:911: Unable to locate image file in pixmap_path: "16x16/actions/bookmarks-organize.png"

Determine key binding used to call a mapping

2016-09-29 Thread Wiere Neuer
Is there a way to obtain the mapping used to call a function from within that function (like with "v:operator")? E.g. to reduce this map vax :call SFunc(0) map vix :call SFunc(1) function SFunc(inner) if a:inner ... endif endfunction to something like this: function SFunc()