Behaviour changed in 7.1.025 regarding excmds and ?foo? address

2008-03-02 Fir de Conversatie ap
==buffer== foo bar foo = :3|.m?foo? In versions prior to 7.1.025, this effectively swapped the 2nd and 3rd line. Since patch 7.1.025 this does nothing, apparently because the pattern does match in the 3rd instead of the 1st line. The patch is very small and here it goes : Patch

Re: bug in search() + 'e'-flag + nl

2008-02-08 Fir de Conversatie ap
On Feb 7, 1:19 pm, Andy Wokula [EMAIL PROTECTED] wrote: Related (?): Yes, it's the same problem. -ap --~--~-~--~~~---~--~~ You received this message from the vim_dev maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

Re: Doing :bufdo tabnew causes vim to hang, hog all resources

2008-02-05 Fir de Conversatie ap
this instead : :tab sball -ap --~--~-~--~~~---~--~~ You received this message from the vim_dev maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

Re: Doing :bufdo tabnew causes vim to hang, hog all resources

2008-02-05 Fir de Conversatie ap
I retract, what I said about it beeing a bug. I just read 'tabpagemax'. Thanks to both Ben and 'ap' for the prompt replies. Ben says For every tab, Vim adds a new tab. It seems counter- intuitive to me considering that my command is *bufdo* tabnew (i.e., for each *buffer* create a new

bug in search() + 'e'-flag + nl

2008-02-04 Fir de Conversatie ap
(Y) which is wrong, because the pattern can't possibly match a 'c'. I have a strong feeling this has something to do with the newline atom :-). -ap --~--~-~--~~~---~--~~ You received this message from the vim_dev maillist. For more information, visit http

patch - enable 'p' flag for searchpair

2008-02-04 Fir de Conversatie ap
subpat = searchpairpos('(',',',')','p')[2] subpat is 1,2,3 or 0 if search failed. 'p' and 'm' are mutually exclusive. http://www.fh-trier.de/~politza/vim/patch_sp_pflag.diff -ap --~--~-~--~~~---~--~~ You received this message from the vim_dev maillist. For more

Re: an idea for plugin development: strict mode

2008-01-25 Fir de Conversatie ap
? I think its a shame, that the editor isn't able to use one of it's very own features. -ap --~--~-~--~~~---~--~~ You received this message from the vim_dev maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

Re: Pressing CTRL-G in visual mode causes vim to use 100% of the CPU.

2008-01-25 Fir de Conversatie ap
On Jan 26, 1:15 am, Dominique Pelle [EMAIL PROTECTED] wrote: (...) map c-g 2c-g (...) Creating such a recursive mapping should perhaps give an error, rather than causing infinite loops when triggering the mapping. -- Dominique What is more alarming then 100% cputime ? ;-) -ap

Re: New features to vote on and sponsoring

2008-01-19 Fir de Conversatie ap
for it this wouldn't be the case. Well, that's just a sidenote. -ap m. --~--~-~--~~~---~--~~ You received this message from the vim_dev maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

Re: New features to vote on and sponsoring

2008-01-19 Fir de Conversatie ap
On Jan 19, 11:32 pm, sc [EMAIL PROTECTED] wrote: On Saturday 19 January 2008 16:07, ap wrote: On Jan 17, 10:07 pm, Mikolaj Machowski [EMAIL PROTECTED] wrote: Dnia Thursday 17 of January 2008, Bram Moolenaar napisaƂ: Hello Vim users, I have added two items to vote

Re: New features to vote on and sponsoring

2008-01-19 Fir de Conversatie ap
On Jan 20, 12:02 am, Tony Mechelynck [EMAIL PROTECTED] wrote: ap wrote: On Jan 17, 10:07 pm, Mikolaj Machowski [EMAIL PROTECTED] wrote: [...] I'd like to see something simpler(?): better command line completion of built-in commands. You can script user defined commands as you wish

Re: Wish: enable :subst-expr with 'n' flag

2008-01-10 Fir de Conversatie ap
result endfun --%-- Maybe someone has a better idea, apart from source modification. -ap --~--~-~--~~~---~--~~ You received this message from the vim_dev maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

Re: Wish: enable :subst-expr with 'n' flag

2008-01-09 Fir de Conversatie ap
MyAddMatch() return submatch(0). Not very eficient, but easy. I am sorry if that is beside your point. but it doesn't, because the n flag disables evaluation of the expression after '\='. IMHO the n flag should only ignore the result of the expression. -- Andy -ap

Re: Scoping in nested functions: How should it work?

2008-01-08 Fir de Conversatie ap
! Outer() let outer_var = 0 call Inner() echo outer_var endfunction function! Inner() let outer_var += 1 endfunction call Outer() - As Tony pointed out, you have 2 different local variables. -ap

Re: Jump to the next tag in the help files

2007-12-30 Fir de Conversatie ap
of it, shows that your hopelessness is unjustified. -ap --~--~-~--~~~---~--~~ You received this message from the vim_dev maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

Re: --remote-tab-silent not mentioned in --help

2007-12-30 Fir de Conversatie ap
in the manpage either. -ap --~--~-~--~~~---~--~~ You received this message from the vim_dev maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

Re: odd behaviour with '\zs' and multiline matches

2007-12-30 Fir de Conversatie ap
line you get an error. This is documented at ':h \@='. -ap --~--~-~--~~~---~--~~ You received this message from the vim_dev maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

odd behaviour with '\zs' and multiline matches

2007-12-29 Fir de Conversatie ap
---buffer--- abcdefg 1234567 + :1s/g\n\zs1// = ---buffer--- 234567 Is it supposed to be this way ? I don't think so. Or maybe someone will enlighten me. -ap --~--~-~--~~~---~--~~ You received this message from the vim_dev maillist

Re: man syntax problem

2007-12-29 Fir de Conversatie ap
is supposed to highlight the text between this keywords. strlen(DESCRIPTION\n) = 12 strlen(SYNOPSIS) = 8 -ap --~--~-~--~~~---~--~~ You received this message from the vim_dev maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

Re: Bug with aw text object

2007-11-20 Fir de Conversatie ap
now have to consider features. I won't push it any further, though. What will history think of you Bram ? ;-) -ap --~--~-~--~~~---~--~~ You received this message from the vim_dev maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

automatic setting of 'diff'

2007-11-14 Fir de Conversatie ap
setting this option. That is the inconsistent part. Is this behaviour documented somewhere, especially the automatic setting of 'diff' ? -ap --~--~-~--~~~---~--~~ You received this message from the vim_dev maillist. For more information, visit http://www.vim.org

Re: Filename completion relative to current buffer's location, not current working directory

2007-10-29 Fir de Conversatie ap
-insenitive file completion, regex-based completion, filename completion based on the wd of the buffer,ect. pp ). -ap --~--~-~--~~~---~--~~ You received this message from the vim_dev maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

Re: Wish: opposite to split() ...

2007-10-19 Fir de Conversatie ap
. -ap --~--~-~--~~~---~--~~ You received this message from the vim_dev maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

Re: doc nitpicking

2007-10-14 Fir de Conversatie ap
. I tried all you mentioned ( default colors, xterm with white bg, no output from loginscripts checked, setting the t_ opts ) ,but it does not change it. -ap --~--~-~--~~~---~--~~ You received this message from the vim_dev maillist. For more information, visit http

Re: Patch for Insert mode completion to try out

2007-10-04 Fir de Conversatie ap
that with consecutive c-xc-[pn] : tc-n - tablec-xc-n - table.field1 popupmenu shows { .field1, .field2 }. -ap --~--~-~--~~~---~--~~ You received this message from the vim_dev maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

Re: vim : process.c ?

2007-09-30 Fir de Conversatie ap
don't use terminology very useful internationally, but I guess you get the gist.) Ben. I am in the 3rd year, the project is scheduled for 1 semester (~ 4 months ) and will be worth 10 ECTS, which is 1/3 of the points assigned to this semester. -ap

Re: vim : process.c ?

2007-09-30 Fir de Conversatie ap
: -start a lisp process in the background -send a expression to it -get the result and do something with it Both (session and non-session ) is actually already possible, the first one with external scripts, but imply many problems one has to overcome. -ap Are you aware of the existing trick

Re: vim : process.c ?

2007-09-30 Fir de Conversatie ap
much close to shell in a vim window. -ap --~--~-~--~~~---~--~~ You received this message from the vim_dev maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

Re: Amusing Vim animated GIF

2007-09-30 Fir de Conversatie ap
-- Shotgun wedding: A case of wife or death. If you find that amusing, maybe you want to give vigor a try. http://vigor.sourceforge.net/ -ap --~--~-~--~~~---~--~~ You received this message from the vim_dev maillist. For more information, visit http://www.vim.org

Re: :setlocal autoread? -- bug?

2007-09-29 Fir de Conversatie ap
noticed that doing vim -u NONE -c ':setlocal autoread?' shows the odd value of --autoread. I suppose this is just a visual problem. -ap --~--~-~--~~~---~--~~ You received this message from the vim_dev maillist. For more information, visit http://www.vim.org

Re: gvim on windows, rearranging tabs

2007-09-27 Fir de Conversatie ap
is on the tabline ? If so, this could be implemented by a script. -ap --~--~-~--~~~---~--~~ You received this message from the vim_dev maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

Re: how to regenerate runtime/syntax/vim.vim

2007-09-24 Fir de Conversatie ap
of the syntax file knows more about this. -ap --~--~-~--~~~---~--~~ You received this message from the vim_dev maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

Re: :catch value of a variable

2007-09-21 Fir de Conversatie ap
: What should happen, if 'now#vim#undefined_variable_error' is a undefined variable ? -ap --~--~-~--~~~---~--~~ You received this message from the vim_dev maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

Re: Bug in autoload handling?

2007-09-18 Fir de Conversatie ap
not equal 'count' , in which case it defaults to v:name . -ap --~--~-~--~~~---~--~~ You received this message from the vim_dev maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---