Re: mysterious unc path issue on windows

2009-02-09 Fir de Conversatie Hugo Ahlenius
Oh, I can also add that I have tried with creating a new user, but I get the same problem. --~--~-~--~~~---~--~~ You received this message from the vim_dev maillist. For more information, visit http://www.vim.org/maillist.php

Re: A few questions(accessing the Vim code in VimL)

2009-02-09 Fir de Conversatie dickey
On Feb 9, 12:35 am, Tony Mechelynck antoine.mechely...@gmail.com wrote: I suspect there's no way to do any of this, but I thought I'd ask before I took a more...cumbersome route. Oh, also what is this declaration structure: 2038 static void 2039 list_func_vars(first) 2040 int *first;

Re: A few questions(accessing the Vim code in VimL)

2009-02-09 Fir de Conversatie Ben Schmidt
Spencer Collyer wrote: On Sun, 8 Feb 2009 20:40:09 -0800, Garrett Whelan wrote: ... Oh, also what is this declaration structure: 2038 static void 2039 list_func_vars(first) 2040 int *first; 2041 { 2042 if (current_funccal != NULL) 2043

RE: A few questions(accessing the Vim code in VimL)

2009-02-09 Fir de Conversatie Larson, DavidX S
It cannot work reliable with redir. Think of options with possible trailing whitespace, like 'listchars', 'showbreak', 'breakat', etc. There is no backslash for escaping in the output. I see your point. I've changed the script to only parse the option names (much easier to do). The option

Re: :cgetfile versus :grep performance

2009-02-09 Fir de Conversatie Lech Lorens
In case anyone should ever be bothered by this issue again, I'll answer myself. Both commands will take almost the same amount of time to complete (actually, :cgetfile seems a little faster) if they use the same error format list. In my case 'grepformat' consisted of 3 patterns and 'errorformat'

Re: A few questions(accessing the Vim code in VimL)

2009-02-09 Fir de Conversatie Andy Wokula
Larson, DavidX S schrieb: It cannot work reliable with redir. Think of options with possible trailing whitespace, like 'listchars', 'showbreak', 'breakat', etc. There is no backslash for escaping in the output. I see your point. I've changed the script to only parse the option names

RE: A few questions(accessing the Vim code in VimL)

2009-02-09 Fir de Conversatie Larson, DavidX S
Here is another way to get the option names, it's basically :set C-A I like it, but I can't find the doc entry for C-A. Do you know where it is? David --~--~-~--~~~---~--~~ You received this message from the vim_dev maillist. For more information, visit

Re: A few questions(accessing the Vim code in VimL)

2009-02-09 Fir de Conversatie James Vega
On Mon, Feb 09, 2009 at 03:08:08PM -0800, Larson, DavidX S wrote: Here is another way to get the option names, it's basically :set C-A I like it, but I can't find the doc entry for C-A. Do you know where it is? :help c_CTRL-A You may also want to read :help help-context -- James

Re: Dynamic folding in 2html.vim output

2009-02-09 Fir de Conversatie Ben Fritz
I just realize my patch doesn't handle the g:html_no_pre option. I'll make another patch in the next day or two to also handle this option (I notice I'll need to get the latest from FTP again). Bram, once I fix the handling of g:html_no_pre, is there a reason not to include this in the official

Re: A few questions(accessing the Vim code in VimL)

2009-02-09 Fir de Conversatie Matt Wozniski
On Mon, Feb 9, 2009 at 5:56 PM, Andy Wokula wrote: Here is another way to get the option names, it's basically :set C-A snip The output is almost sorted and includes all and termcap as the first two entries. Wow. That is quite clever, I definitely wouldn't have thought of that.

Re: Dynamic folding in 2html.vim output

2009-02-09 Fir de Conversatie Benjamin Fritz
On Mon, Feb 9, 2009 at 5:29 PM, Ben Fritz fritzophre...@gmail.com wrote: I just realize my patch doesn't handle the g:html_no_pre option. I'll make another patch in the next day or two to also handle this option (I notice I'll need to get the latest from FTP again). Bram, once I fix the

Re: A few questions(accessing the Vim code in VimL)

2009-02-09 Fir de Conversatie Tony Mechelynck
On 10/02/09 03:28, Matt Wozniski wrote: On Mon, Feb 9, 2009 at 5:56 PM, Andy Wokula wrote: Here is another way to get the option names, it's basically :setC-A snip The output is almost sorted and includes all and termcap as the first two entries. Wow. That is quite clever, I