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...
`:quit` command currently exits vim if it is the last open window, help window will be ignored in this check, is there any way to specify certain type of...
Dear vim_dev, I have found a strange behaviour of "- register, with the following setting: set clipboard=unnamed,autoselect,exclude:cons92;|linux (unnamed added...
It seems if "QuitPre" autocommand is used, executing ":quit" twice will not quit vim when the last file in the argument list has not yet been edited. I looked...
Hi folks, I tried to contact maintainer of Czech menu translation via e-mail from the files, But mailbox no longer exists on that freemail. So I'm sending it...
Hi. http://ftp.vim.org/pub/vim/patches/7.3/7.3.743 (or other patches) returns "Content-Type: application/x-troff-man" I think it should be text/plan. Sorry, I...
Given that test61 is intended to verify the functionality of the undo tree, it's inherently time sensitive. This test sporadically fails[0][1][2] during the...
I know we can use `try..catch` structure to customize error handling in scripts, but is there any way to catch an error of user executed command not scripts?...