Re: [patch] Updates to Perl syntax file options

2013-06-23 Fir de Conversatie Rob Hoelz
On Sun, 23 Jun 2013 21:45:38 +0200 Rob Hoelz wrote: > Attached is a patch for changes to options for the Perl syntax file. > > Thanks, > Rob Someone pointed out a typo in my patch, so here's a new one. -Rob # HG changeset patch # User Rob Hoelz # Date 1372016562 -7200 #

[patch] Updates to Perl syntax file options

2013-06-23 Fir de Conversatie Rob Hoelz
Attached is a patch for changes to options for the Perl syntax file. Thanks, Rob # HG changeset patch # User Rob Hoelz # Date 1372016562 -7200 # Sun Jun 23 21:42:42 2013 +0200 # Node ID f2527c4e51ce7cd327be05cc217bc31db663d77e # Parent 7a5c346861e11b1a54e5327c133419e85d732e3a Update

Re: To all syntax file maintainers: examples needed

2013-05-23 Fir de Conversatie Rob Hoelz
On Saturday, May 11, 2013 6:00:11 PM UTC+2, Bram Moolenaar wrote: > The plan is to include a new regexp engine in Vim 7.4. For testing > > I would like to get a lot of files for which we have syntax > > highlighting. I can then compare the highlighting of these files with > > the old and the n

[PATCH] Fix small typo in regexp.c

2013-05-23 Fir de Conversatie Rob Hoelz
I was diving in the Vim source, and I found a small typo. Here's a patch to fix it. Thanks, Rob -- -- You received this message from the "vim_dev" 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 --- Y

Re: Patch to "fix" Lua binding's debug.debug

2011-09-20 Fir de Conversatie Rob Hoelz
On Sep 19, 11:12 am, Luis Carvalho wrote: > Hi Rob, > > > It's been a week since I posted this patch, and I haven't seen any > > response.  If you guys don't want to incorporate my patch into Vim, > > that's ok; I'd just like to know if I need to fix anything up, or if > > it needs to get vetted o

Re: Patch to "fix" Lua binding's debug.debug

2011-09-19 Fir de Conversatie Rob Hoelz
On Sep 19, 10:20 am, Dominique Pellé wrote: > On Mon, Sep 19, 2011 at 5:07 PM, Rob Hoelz wrote: > > On Sep 12, 12:03 pm, Rob Hoelz wrote: > > > Hello Vim developers, > > > > I noticed that Vim currently uses the stock implementation of Lua's > > > de

Re: Patch to "fix" Lua binding's debug.debug

2011-09-19 Fir de Conversatie Rob Hoelz
On Sep 12, 12:03 pm, Rob Hoelz wrote: > Hello Vim developers, > > I noticed that Vim currently uses the stock implementation of Lua's > debug.debug() function in if_lua.c, which will cause Vim to seemingly > hang if called. I've written and attached a new implementation

Patch to "fix" Lua binding's debug.debug

2011-09-12 Fir de Conversatie Rob Hoelz
scripters want to make use of it. Thanks, Rob Hoelz diff --git a/src/if_lua.c b/src/if_lua.c --- a/src/if_lua.c +++ b/src/if_lua.c @@ -1069,6 +1069,59 @@ {NULL, NULL} }; +static int luaV_debug_debug(lua_State *L) +{ +const char *line = ""; +int vim_eval_in