Re: Keyboard input handling

2010-05-13 Fir de Conversatie Milan Vancura
Hello. This is very interesting thread. We -really- need to be able to distinguish Escape, the ASCII sequence of 0x1e, from Esc, the human-level idea of pressing that piece of plastic. This would enable us to :map Esc foobarsplot And also get rid of the waiting loop for distinguishing

Re: textobjects extension

2010-05-13 Fir de Conversatie mobi phil
/*  * Version of strchr() and strrchr() that handle unsigned char strings  * with characters from 128 to 255 correctly.  It also doesn't return a  * pointer to the NUL at the end of the string.  */    char_u  * vim_strchr(string, c)    char_u      *string;    int         c; {    char_u  

Re: [bug] shellpipe is not set as documented

2010-05-13 Fir de Conversatie Bram Moolenaar
Britton Kerin wrote: The documentation for the 'shellpipe' option in runtime/doc/options.txt includes this: For Unix the default it | tee. The stdout of the compiler is saved in a file and echoed to the screen. If the las'shell' option is csh or tcsh after

Patch 7.2.417

2010-05-13 Fir de Conversatie Bram Moolenaar
Patch 7.2.417 Problem:When 'shell' has an argument with a slash then 'shellpipe' is not set properly. (Britton Kerin) Solution: Assume there are no spaces in the path, arguments follow. Files: src/option.c *** ../vim-7.2.416/src/option.c 2010-02-24 14:34:10.0

Re: Keyboard input handling

2010-05-13 Fir de Conversatie Lech Lorens
On 13 May 2010 11:18, Milan Vancura mi...@ucw.cz wrote: BTW, slightly different topic: how can one remap some internal function from its default hotkey to the different one? As far as I know there is nothing like leave insert mode function which can be mapped to the different key in case Esc

Re: textobjects extension

2010-05-13 Fir de Conversatie Tony Mechelynck
On 13/05/10 11:54, mobi phil wrote: /* * Version of strchr() and strrchr() that handle unsigned char strings * with characters from 128 to 255 correctly. It also doesn't return a * pointer to the NUL at the end of the string. */ char_u * vim_strchr(string, c) char_u

Re: Keyboard input handling

2010-05-13 Fir de Conversatie Milan Vancura
On 13 May 2010 11:18, Milan Vancura mi...@ucw.cz wrote: BTW, slightly different topic: how can one remap some internal function from its default hotkey to the different one? As far as I know there is nothing like leave insert mode function which can be mapped to the different key in

Patch 7.2.418

2010-05-13 Fir de Conversatie Bram Moolenaar
Patch 7.2.418 Problem:Vim tries to set the background or foreground color in a terminal to -1. (Graywh) Happens with :hi Normal ctermbg=NONE. Solution: When resetting the foreground or background color don't set the color, let the clear screen code do that. Files:

Patch 7.2.419

2010-05-13 Fir de Conversatie Bram Moolenaar
Patch 7.2.419 Problem:Memory leak in Motif when clicking on Search Vim Help. Solution: Free string returned by XmTextGetString(). (Dominique Pelle) Files: src/gui_motif.c *** ../vim-7.2.418/src/gui_motif.c 2009-05-21 23:25:38.0 +0200 --- src/gui_motif.c 2010-05-13

Patch 7.2.420

2010-05-13 Fir de Conversatie Bram Moolenaar
Patch 7.2.420 Problem::argedit does not accept ++enc=utf8 as documented. (Dominique Pelle) Solution: Add the ARGOPT flag to :argedit. Files: src/ex_cmds.h *** ../vim-7.2.419/src/ex_cmds.h2009-07-09 15:55:34.0 +0200 --- src/ex_cmds.h 2010-05-13

Patch 7.2.421

2010-05-13 Fir de Conversatie Bram Moolenaar
Patch 7.2.421 Problem:Folds are sometimes not updated properly and there is no way to force an update. Solution: Make zx and zX recompute folds (suggested by Christian Brabandt) Files: src/normal.c *** ../vim-7.2.420/src/normal.c 2010-05-07 15:51:59.0

Patch 7.2.422

2010-05-13 Fir de Conversatie Bram Moolenaar
Patch 7.2.422 Problem:May get E763 when using spell dictionaries. Solution: Avoid utf-8 case folded character to be truncated to 8 bits and differ from latin1. (Dominique Pelle) Files: src/spell.c *** ../vim-7.2.421/src/spell.c 2010-01-19 13:06:42.0 +0100 ---

Re: did netrw move?

2010-05-13 Fir de Conversatie Charles Campbell
sc wrote: On Wednesday 12 May 2010 1:42:32 pm Gary Johnson wrote: On 2010-05-12, sc wrote: list-- lWi am unable to navigate to http://mysite.verizon.net/astronaut/vim/index.html is there a problem? If you navigate up to the site page, http://mysite.verizon.net/, you'll

Compiling Vim 7.2.418 and Ruby 1.9.1 with Visual C++

2010-05-13 Fir de Conversatie Geert VL
Hi, I am trying to compile Vim 7.2.418 together with Ruby 1.9.1. I use Visual C++ 2008 Express edition. I use the following command line: nmake -f Make_mvc.mak GUI=yes MSVCVER=9.0 PYTHON=c:\Python26 RUBY=c: \Ruby19 This gives me the following error: Microsoft (R) Program Maintenance Utility

Vim and Mercurial

2010-05-13 Fir de Conversatie Tony Mechelynck
I've started trying to learn Mercurial as used with Vim, but the learning curve is steep, not the least because AFAICT the only docs consist in three very long manpages, plus the hg help function which only displays a few lines at a time (let's say between 10 and 60) and you cannot know what

Re: Vim and Mercurial

2010-05-13 Fir de Conversatie Gary Johnson
On 2010-05-13, Tony Mechelynck wrote: I've started trying to learn Mercurial as used with Vim, but the learning curve is steep, not the least because AFAICT the only docs consist in three very long manpages, plus the hg help function which only displays a few lines at a time (let's say

Re: Compiling Vim 7.2.418 and Ruby 1.9.1 with Visual C++

2010-05-13 Fir de Conversatie winterTTr
On Fri, May 14, 2010 at 12:55 AM, Geert VL geert.vanlaet...@gmail.comwrote: Hi, I am trying to compile Vim 7.2.418 together with Ruby 1.9.1. I use Visual C++ 2008 Express edition. I use the following command line: nmake -f Make_mvc.mak GUI=yes MSVCVER=9.0 PYTHON=c:\Python26 RUBY=c:

Re: Compiling Vim 7.2.418 and Ruby 1.9.1 with Visual C++

2010-05-13 Fir de Conversatie Sergey Khorev
nmake -f Make_mvc.mak GUI=yes MSVCVER=9.0 PYTHON=c:\Python26 RUBY=c: \Ruby19 You also need to specify RUBY_VER_LONG and, perhaps, RUBY_PLATFORM, -- Sergey Khorev http://sites.google.com/site/khorser Can anybody think of a good tagline I can steal? -- You received this message from the

Re: Vim and Mercurial

2010-05-13 Fir de Conversatie Tony Mechelynck
On 13/05/10 23:42, Gary Johnson wrote: On 2010-05-13, Tony Mechelynck wrote: I've started trying to learn Mercurial as used with Vim, but the learning curve is steep, not the least because AFAICT the only docs consist in three very long manpages, plus the hg help function which only displays a