Patch 7.3.753 Problem: When there is a QuitPre autocommand using ":q" twice does not work for exiting when there are more files to edit. Solution: Do not...
Sorry to bother the list with this: I have a couple of people for who I no longer have a valid address or email, and I need to get in touch with them. I...
Hello all, Attached is a small change to support the newest NMAKE introduced by Visual Studio 2012 Update 1. I have tested it and VIM seems to compile fine. --...
I use vim-gtk 7.3.429-2ubuntu2.1 on ubuntu 12.04. The docs for shellslash state that it's only defined only for MSDOS, MS-Windows and OS/2. In vim-gtk, echo...
Hi! Is there any reason why "\(\\\n\\\n\)92;@<=U" fail to match this text: \ \ U while "\(\\\n\\\n\)U" will match it and "\(\\\n\)\@<=U" will match it too ...
Sergey - I have build Vim with MzScheme on Ubuntu 12.10. Every time a shell command is executed I get this warning message: SIGCHLD handler called (some...
Patch 7.3.751 Problem: Test 61 is flaky, it fails once in a while. Solution: When it fails retry once. Files: src/testdir/Makefile ... ***************...
Hi Requesting comments on unexpected setpos() behaviour; possibly a bug. Consider this buffer: First line example text Second line, tab character in front ...
Hello Vim users, Vim users donate quite some money to my favorite charity: Kibaale Childrens Centre. I went there to check out what they have been doing with...
I think functions with [range] should preserve the cursor line. Assume you have: function RangeTest() range echo line('.39;) endfunction And you put the cursor...
Normally when quickfix window opens it changes the screen layout, but Vim restores it when that window is closed. But there is a situation where the layout...
Patch 7.3.748 Problem: Cannot properly test conceal mode. Solution: Add the screencol() and screenrow() functions. Use them in test88. (Simon Ruderich) ...
Patch 7.3.747 Problem: When characters are concealed text aligned with tabs are no longer aligned, e.g. at ":help :index". Solution: Compensate space for...
... The problem is that buffer-local mappings overrule global mappings. A buffer-local mapping cannot remap a global mapping. And the keymap uses global...
I was just trying some tests on my Ubuntu 12.04 box and compiled my own Vim: Included patches: 1-729 I started Vim using: gvim -u .vimrc -U .gvimrc --noplugin...
This allows you to ... It's the analog of the :syntax combine option. This makes things much easier on color scheme designers. As in the above example, they...
Patch 7.3.699 Problem: When 'ttymouse39; is set to "sgr" manually, it is overruled by automatic detection. Solution: Do not use automatic detection when...
Dear vim_dev, I think I have found a bug in BufDelete autocommand. When I delete a buffer, load it (with the :buffer command) and then delete it again (with...
This is a potential enhancement to 'syn-modifier39; for your consideration. It adds 'syn-removeattrs', which can be used as follows: syntax region Bold...
With this patch you can do the following: syntax match Foo 'foo' highlight Foo cterm=bold ctermfg=red highlight Foo cterm+italic and now Foo is both bold and...
Bram, this patch fixes this item from the todo list: /[^\n] does match at a line break. Expected to do the same as /. Vim now handles /[^\n] exactly like...