Hello Vim developers, With :set clipboard^=unnamed, operations are redirected from the unnamed register '"39; to register '*'. If one wants to use the unnamed...
Hello, The comment in function vim_tempname says: "GetTempPath() failed, use current dir". It use "szTempFile[0] = NUL" to do this, which makes szTempFile an ...
Hello, tmpnam() might return a NULL pointer if it failed to generate a unique name. Vim doesn't handle it properly. Here's the patch to fix it. Regards, Hong...
Hi Attached patch improves completion of Ex command ":language" by completing available locales. It works by running command "locale -a" to find available...
Writing a file to a SSD (Solid State Drive) results (reproducible) in setting of +R file flag. Therefore further writes with vim (:w) complain about read-only...
I have a file which if read with the Windows-1252 encoding (cp1252 in Vim) has an en dash character (encoded as byte 150). When I load this file in a Vim with...
Hi, Bram, It came up in a private conversation I had that this line in get_varp() is useless: default: EMSG(_("E356: get_varp ERROR")); The reason is...
Hi Bram, here is a patch, that fixes this item from the todo list: ,---- ... `---- BTW: Is it supposed to be that concealed lines, wrap earlier than other ...
... Hello, I think I have fixed this problem. The attachment is the patch. The reason is that when gtk_menu_popup is called, its last parameter is not passed...
If a QuickfixCmdPost clears the qflist after a :make, a E42 "No Errors" diagnosic is issued. This is because vim (7.3.102) doesn't recheck the size of the list...
Patch 7.3.110 Problem: The "nbsp" item in 'listchars39; isn't used for ":list". Solution: Make it work. (Christian Brabandt) Files: src/message.c ... ...
... Here is a patch, that adds nbsp support to :list command. I leave out conceal, as I don't think this makes sense here: diff --git a/src/message.c...
Patch 7.3.109 Problem: Processing new Esperanto spell file fails and crashes Vim. (Dominique Pelle) Solution: When running out of memory give an error....
Hi all, While reading through usr_41.txt I found a typo, please see the attached patch (based on the latest runtime files from Mercurial). - Peter Odding -- ...
There is some strange bug that causes line numbers in errors coming from perl to come out wrong in some circumstances. This code: perl <<END_PERL # line 3...
First of all: Why is setlocal aw allowed because its a global option only. I'd like to tidy up optwin.vim and change its output maybe adding core funtions...
Does the current vim.sf.net page tell about existing repositories where vim patches mature ? If if they are never merged upstream it would be nice to have a...
Attached is a minor patch which removes some useless checks for NULL pointer before calling vim_free() since vim_free() already checks for NULL pointer. --...
Consider the following code: set nocompatible function! Err() try return [ catch return 2 endtry endfunction echo Err() vim launched with «vim -u NONE -S...
I often use Vim running on another host, with the X connection tunneled through ssh. That introduces a small amount of delay when updating big areas, which...
I'm working on an upgrade to the Windows installer for Vim: https://github.com/gpwen/vim-installer-mui2/wiki I just realized Vim has build-in support for...
Consider the following code: % cat > test-filereadable.vim <<EOF set nocompatible let s:g={"load":{"saveoptions":{"abc":function("string")}}} function...
Hello Vim developers, After reading a discussion on improving the following snippet mentioned in :help last-position-jump ... "normal! g`\"" | endif in the Vim...