Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

vimdev · Vim (Vi IMproved) text editor developers list

The Yahoo! Groups Product Blog

Check it out!

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

Advanced
Messages Help
  Newest  |  < Newer  |  Older >  |  Oldest
Topics Messages Latest Post

Hello Vim developers, With :set clipboard^=unnamed, operations are redirected from the unnamed register '"&#39; to register '*'. If one wants to use the unnamed...
13 Feb 7, 2011
10:01 am

Bram Moolenaar
Bram@...
Send Email

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 ...
3 Feb 6, 2011
1:15 pm

H Xu
xuhdev@...
Send Email

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...
2 Feb 6, 2011
12:22 pm

Bram Moolenaar
Bram@...
Send Email

Hi Attached patch improves completion of Ex command ":language&quot; by completing available locales. It works by running command "locale -a" to find available...
2 Feb 6, 2011
12:22 pm

Bram Moolenaar
Bram@...
Send Email

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...
1 Feb 4, 2011
10:56 am

Gert Großmann
gertgrossmann@...
Send Email

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...
13 Feb 4, 2011
12:47 am

Vlad Irnov
vlad.irnov@...
Send Email

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...
3 Feb 4, 2011
12:02 am

Ben Schmidt
mail_ben_schmidt@...
Send Email

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 ...
2 Feb 3, 2011
9:04 pm

Bram Moolenaar
Bram@...
Send Email

... 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...
8 Feb 3, 2011
7:44 pm

Bram Moolenaar
Bram@...
Send Email

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...
1 Feb 3, 2011
6:16 am

Mike Lundy
mike@...
Send Email

Patch 7.3.110 Problem: The "nbsp" item in 'listchars&#39; isn't used for ":list". Solution: Make it work. (Christian Brabandt) Files: src/message.c ... ...
3 Feb 2, 2011
2:52 pm

Tony Mechelynck
antoine.mechelynck@...
Send Email

... 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...
5 Feb 1, 2011
8:58 pm

Christian Brabandt
cblists@...
Send Email

Patch 7.3.112 Problem: Setting 'statusline&#39; to "%!'asdf%' reads uninitialized memory. Solution: Check for NUL after %. Files: src/buffer.c ... ...
1 Feb 1, 2011
8:56 pm

Bram Moolenaar
Bram@...
Send Email

Patch 7.3.111 (after 7.3.100) Problem: Executing a :normal command in 'statusline&#39; evaluation causes the cursor to move. (Dominique Pelle) Solution: When...
1 Feb 1, 2011
5:03 pm

Bram Moolenaar
Bram@...
Send Email

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....
1 Feb 1, 2011
1:00 pm

Bram Moolenaar
Bram@...
Send Email

Hi Vim-7.3.107 crashes when I try to create the Esperanto dictionary from OpenOffice-3. Steps to reproduce: $ wget...
4 Feb 1, 2011
12:50 pm

Bram Moolenaar
Bram@...
Send Email

For the source from the download page I get this and the latest stable perl (5.12.3), I get this: $ ./configure --prefix=$HOME/local...
2 Feb 1, 2011
12:49 pm

Bram Moolenaar
Bram@...
Send Email

Patch 7.3.108 Problem: Useless check for NULL when calling vim_free(). Solution: Remove the check. (Dominique Pelle) Files: src/eval.c, src/ex_cmds.c,...
1 Feb 1, 2011
12:49 pm

Bram Moolenaar
Bram@...
Send Email

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 -- ...
1 Feb 1, 2011
9:31 am

Peter Odding
peter@...
Send Email

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...
5 Jan 31, 2011
11:26 pm

Britton Kerin
britton.kerin@...
Send Email

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...
12 Jan 31, 2011
12:26 am

ZyX
zyx.vim@...
Send Email

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...
4 Jan 30, 2011
9:21 pm

Marc Weber
marco-oweber@...
Send Email

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. --...
2 Jan 30, 2011
9:07 pm

Bram Moolenaar
Bram@...
Send Email

Consider the following code: set nocompatible function! Err() try return [ catch return 2 endtry endfunction echo Err() vim launched with «vim -u NONE -S...
2 Jan 27, 2011
4:29 am

Bram Moolenaar
Bram@...
Send Email

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...
2 Jan 26, 2011
5:06 pm

David Harrison
david54@...
Send Email

... Here is a patch: diff --git a/src/search.c b/src/search.c ... +++ b/src/search.c @@ -1161,9 +1161,13 @@ { if (spats[RE_SEARCH].pat == NULL) /* no...
2 Jan 26, 2011
5:20 am

Bram Moolenaar
Bram@...
Send Email

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...
1 Jan 26, 2011
3:16 am

Guopeng Wen
wenguopeng@...
Send Email

Consider the following code: % cat > test-filereadable.vim <<EOF set nocompatible let s:g={"load&quot;:{"saveoptions";:{"abc":function("string&quot;)}}} function...
1 Jan 25, 2011
5:50 pm

ZyX
zyx.vim@...
Send Email

Hello Vim developers, After reading a discussion on improving the following snippet mentioned in :help last-position-jump ... "normal! g`\"" | endif in the Vim...
1 Jan 25, 2011
10:02 am

Ingo Karkat
swdev@...
Send Email

Some ')' parentheses are missed. ... +++ b/runtime/doc/eval.txt @@ -1920,7 +1920,7 @@ List spelling suggestions split( {expr} [, {pat} [, {keepempty}]]) List...
2 Jan 25, 2011
4:19 am

Bram Moolenaar
Bram@...
Send Email
  Newest  |  < Newer  |  Older >  |  Oldest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help