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 Bram These do the same thing: let @/ = @/ . pad[c] let @/ .= pad[c] Is there an advantage (speed? resources?) to use one rather the other? That is, other...
4 Aug 8, 2012
12:12 pm

Bram Moolenaar
Bram@...
Send Email

I have a new PC with Windows 7 that I want to use to build Vim for distribution. It's a 64 bit system but I first want to build 32 bit binaries. I have...
12 Aug 7, 2012
7:45 pm

Bram Moolenaar
Bram@...
Send Email

gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-2.0 -I/usr/lib64/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo...
11 Aug 6, 2012
6:29 pm

Bram Moolenaar
Bram@...
Send Email

Patch 7.3.610 Problem: Cannot operate on the text that a search pattern matches. Solution: Add the "gn" and "gN" commands. (Christian Brabandt) Files:...
4 Aug 6, 2012
7:18 am

Christian Brabandt
cblists@...
Send Email

Hi Attached patch contains various small fixes in vim help files. In version7.txt, I removed the line... Add completion for ":ownsyntax&quot; and improve completion...
4 Aug 5, 2012
9:04 pm

Bram Moolenaar
Bram@...
Send Email

Hi, I noticed an issue with omnicomplete in vim 7.3.617. If I open vim with vim foo.html and then type <div style="display:<C-X><C-O> then the "display:" part...
2 Aug 5, 2012
12:57 pm

Christian Brabandt
cblists@...
Send Email

Hi shawn! ... Here is a patch, allowing :o! diff --git a/src/ex_cmds.h b/src/ex_cmds.h ... +++ b/src/ex_cmds.h @@ -662,7 +662,7 @@ EX(CMD_nunmenu,...
1 Aug 5, 2012
12:39 pm

Christian Brabandt
cblists@...
Send Email

Hi, I found the problem in indent/vim.vim. ... The match uses "=~" and "!~" instead of "=~" and "!~". So if set ignorecase, the indentation is wrong. I fixed...
6 Aug 5, 2012
12:34 pm

ZyX
zyx.vim@...
Send Email

From the vim_use list thread, "Activating Windows gVim from the command line": ... Attached in a proposed patch to add this tag. The patch is based on Vim...
2 Aug 4, 2012
1:31 pm

Bram Moolenaar
Bram@...
Send Email

vim 7.3 has 600+ patchs now ! what is the time of next version of vim ? -- You received this message from the "vim_dev" maillist. Do not top-post! Type your...
2 Aug 3, 2012
3:59 pm

Tony Mechelynck
antoine.mechelynck@...
Send Email

Hi, My vim seems to flicker on big terminals because the output buffer is limited to 2K. Outputting a full redraw of large screen needs much more characters...
4 Aug 3, 2012
6:07 am

Balazs
rlblaster@...
Send Email

When using auto completion on php or C with user's autocmd, it's affected from user's autocmd. For example, If user want to show up quickfix, below's autocmd...
3 Aug 3, 2012
12:34 am

mattn
mattn.jp@...
Send Email

Patch 7.3.622 Problem: XPM library for Win32 can't be found. Solution: Suggest using the one from the Vim ftp site. Files: src/Make_mvc.mak ... ...
1 Aug 2, 2012
7:48 pm

Bram Moolenaar
Bram@...
Send Email

Patch 7.3.621 Problem: Compiler warnings on 64 bit windows. Solution: Add type casts. (Mike Williams) Files: src/ex_docmd.c, src/search.c ... ...
1 Aug 2, 2012
7:25 pm

Bram Moolenaar
Bram@...
Send Email

Patch 7.3.620 Problem: Building with recent Ruby on Win32 doesn't work. Solution: Add a separate argument for the API version. (Yasuhiro Matsumoto) Files:...
1 Aug 2, 2012
7:22 pm

Bram Moolenaar
Bram@...
Send Email

Patch 7.3.619 Problem: When executing a shell command Vim may become slow to respond. Solution: Don't wait after every processed message. (idea by...
1 Aug 2, 2012
10:32 am

Bram Moolenaar
Bram@...
Send Email

on windows, gvim become slow while executing shell. When type alt-tab to switch focus of windows, vim don't work quickly. If it have many window messages, I...
2 Aug 2, 2012
10:32 am

Bram Moolenaar
Bram@...
Send Email

Using <C-c> as a leader key breaks 'Does not trigger the InsertLeave autocommand event' I use GVim 7.3.600. Steps to reproduce: gvim -u NONE -U NONE set...
7 Aug 1, 2012
4:46 pm

Mikey
smieciarski@...
Send Email

Hi Attached patch fixes the following item in in ":help todo": =========================================================== ":e ~br<Tab>" does not complete to...
7 Jul 30, 2012
9:14 pm

Bram Moolenaar
Bram@...
Send Email

Status: New Owner: ---- Labels: Type-Defect Priority-Medium New issue 47 by weasley...@...: In Win32, mouse wheel do not scroll the window under cursor ...
9 Jul 30, 2012
2:53 pm

Ben Fritz
fritzophrenic@...
Send Email

escape / after \V ... Use of "\V" means that in the pattern after it only the backslash has a special meaning. "very nomagic" I have a function: function!...
3 Jul 30, 2012
7:37 am

Tony Mechelynck
antoine.mechelynck@...
Send Email

Hi, all I have one question regarding to the global/local boolean option in vim. I want to set noignorecase in insertmode. When leaving insert mode, I want to...
10 Jul 30, 2012
2:20 am

Ben Fritz
fritzophrenic@...
Send Email

Patch 7.3.618 (after 7.3.616) Problem: Still doesn't compile with small features. Solution: Move current_search() out of #ifdef. (Dominique Pelle) Files:...
1 Jul 29, 2012
10:56 am

Bram Moolenaar
Bram@...
Send Email

Patch 7.3.617 (after 7.3.615) Problem: Hang on completion. Solution: Skip over the space. (Yasuhiro Matsumoto) Files: src/ex_docmd.c ... ...
4 Jul 28, 2012
3:51 pm

Tony Mechelynck
antoine.mechelynck@...
Send Email

Patch 7.3.615 Problem: Completion for a user command does not recognize backslash before a space. Solution: Recognize escaped characters. (Yasuhiro...
3 Jul 27, 2012
7:12 pm

Bram Moolenaar
Bram@...
Send Email

Patch 7.3.616 (after 7.3.610) Problem: Can't compile without +visual. Solution: Add #ifdef. Files: src/normal.c ... *************** ... */ case 'N': ...
1 Jul 27, 2012
7:06 pm

Bram Moolenaar
Bram@...
Send Email

I recently discovered that GVim for Windows evidently doesn't Save files the same way that other text editors for Windows do. So I'm: + Making others aware of...
5 Jul 25, 2012
5:17 pm

sfosparky
phrawm48@...
Send Email

Status: New Owner: ---- Labels: Type-Defect Priority-Medium New issue 63 by daddyez...@...: sed: RE error: illegal byte sequence ...
8 Jul 25, 2012
2:52 pm

vim@...
Send Email

Patch 7.3.614 Problem: Number argument gets turned into a number while it should be a string. Solution: Add flag to the call_vim_function() call....
1 Jul 25, 2012
2:48 pm

Bram Moolenaar
Bram@...
Send Email

Patch 7.3.613 Problem: Including Python's config.c in the build causes trouble. It is not clear why it was there. Solution: Omit the config file. (James...
1 Jul 25, 2012
2:32 pm

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