Re: [patch] Titles for quickfix / location list windows

2010-07-17 Thread Bram Moolenaar
Lech Lorens wrote (more than a year ago): > On 28-Mar-2009 Lech Lorens wrote: > > Improved version of patch is attached. I took into consideration most of > > the suggestions. I will be grateful for any more comments. > > I found an invalid memory access while executing the :tabs command. The >

Re: HTML patch included

2010-07-17 Thread Ben Fritz
On Jul 17, 12:48 am, Dominique Pellé wrote: > > I see a bug: part of CSS style shows up in the rendered HTML > at the bottom of the page. > Thanks, I'll look into it. But I cannot reproduce it. > Steps to reproduce: > > 1) use the following ~/.vimrc > > set nocompatible > syntax on > filetype

Re: HTML patch included

2010-07-17 Thread Ben Fritz
On Jul 17, 9:59 am, Ben Fritz wrote: > On Jul 17, 12:48 am, Dominique Pellé > wrote: > > > > > I see a bug: part of CSS style shows up in the rendered HTML > > at the bottom of the page. > > Thanks, I'll look into it. But I cannot reproduce it. > Oops, I was testing with a version where I merg

Re: HTML patch included

2010-07-17 Thread Benjamin Fritz
On Sat, Jul 17, 2010 at 10:08 AM, Ben Fritz wrote: > > Oops, I was testing with a version where I merged Bram's push into my > own work. There was one difference I had forgotten about, which fixes > this bug. I'm not sure if a hunk failed when Bram applied the patch > originally, or what happened.

Compiling vim7.3a failed on Win XP with MinGW

2010-07-17 Thread Cesar Romani
By compiling wim7.3a with MinGW on Win XP I'm getting following error: ... gcc -c ... ex_docmd.c -o gobjZ/ex_docmd.o In file included from ex_docmd.c:485:0: ex_cmds.h:574:1: error: 'ex_script_ni' undeclared here (not in a function) make: *** [gobjZ/ex_docmd.o] Error 1 ---

Re: [patch] fixed broken jump tag in help files

2010-07-17 Thread Dominique Pellé
Bram Moolenaar wrote: > I'm trying out the conceal feature for help files.  I already noticed > that the Ada file doesn't use spaces around |link| items.  There are > probably more. Yes, there are a few more missing spaces around |link| items. Attached patch fixes them. I see that now | and * ar

Re: HTML patch included

2010-07-17 Thread Dominique Pellé
Ben Fritz wrote: > Bram just pushed a patch from me to Mercurial that fixes these and > also adds a progress bar. Please try it out and send feedback. Hi Ben Here is another problem that I see with :TOhtml. It does not honor concealed items. Steps to reproduce: 1) use the following ~/.vimrc:

Re: LUA on Windows 7 fails to compile

2010-07-17 Thread Tux
BTW this also fails with VS 2010. Tux schrob am 15.07.2010 23:32: > Latest snapshot, using DYNAMIC_LUA (v5.1.4) and Visual Studio 2008(...) -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit h

colorcolumn or cursorcolumn misaligned when using conceallevel=3

2010-07-17 Thread Dominique Pellé
Hi The new 'colorcolumn' feature looks ugly (misaligned colorcolumn) when using concealed items. The following 2 screenshots show ":help help.txt" with: :set colorcolumn=79 conceallevel=0 (looks OK) :set colorcolumn=79 conceallevel=3 (looks BAD) http://dominique.pelle.free.fr/pic/help-conceall

[patch] wcwidth() function

2010-07-17 Thread tyru
Hi list. I have implemented wcwidth() function. Based commit was 7.2.444. It is useful to get width of character, for e.g., when creating plugin which needs to align text not to exceed &columns, or which needs to concern character width like tetris game :) I'm new to hack Vim source. So please t

Re: Compiling vim7.3a failed on Win XP with MinGW

2010-07-17 Thread Tony Mechelynck
On 17/07/10 17:26, Cesar Romani wrote: By compiling wim7.3a with MinGW on Win XP I'm getting following error: ... gcc -c ... ex_docmd.c -o gobjZ/ex_docmd.o In file included from ex_docmd.c:485:0: ex_cmds.h:574:1: error: 'ex_script_ni' undeclared here (not in a function) make

Re: colorcolumn or cursorcolumn misaligned when using conceallevel=3

2010-07-17 Thread Tony Mechelynck
On 17/07/10 20:32, Dominique Pellé wrote: Hi The new 'colorcolumn' feature looks ugly (misaligned colorcolumn) when using concealed items. The following 2 screenshots show ":help help.txt" with: :set colorcolumn=79 conceallevel=0 (looks OK) :set colorcolumn=79 conceallevel=3 (looks BAD) http

Re: Planning Vim 7.3: Python3 support?

2010-07-17 Thread Bram Moolenaar
Roland Puntaier wrote: > > No, Python 3.x is considered as another language. So most Python 2.x > > scripts will not work under Python 3.x. > > The patch has > :py3 > for Python 3.x > and legacy > :py[thon] > for Python 2.x. > > Python 3.x is treated as another language. > B

Re: wcwidth() function

2010-07-17 Thread Ingo Karkat
On 17-Jul-2010 20:40, tyru wrote: > I have implemented wcwidth() function. > Based commit was 7.2.444. > > It is useful to get width of character, > for e.g., when creating plugin which needs to > align text not to exceed &columns, > or which needs to concern character width like tetris game :) >

[PATCH] Detect Ctrl + scroll wheel. (Benjamin R. Haskell)

2010-07-17 Thread Benjamin R. Haskell
From: Benjamin R. Haskell This fixes the issue with mapping / for both rxvt-unicode and uxterm. -- Ben --- src/term.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/src/term.c b/src/term.c index 2e0376c..205cd35 100644 --- a/src/term.c +++ b/src/term.c @@ -4763,6 +476

Cannot compile with +lua

2010-07-17 Thread Tony Mechelynck
The first time the lua interface was included in Vim 7.3a, I could successfully compile with +lua. Now (with no changes since then) I cannot; and yet the lua and lua-devel packages are installed on my openSUSE 11.2 system, as "lua-5.1.4-6.2-i586" and "lua-devel-5.1.4-6.2-i586" respectively. I

Re: LUA on Windows 7 fails to compile (solved)

2010-07-17 Thread Tux
Tux schrob am 17.07.2010 20:23: > BTW this also fails with VS 2010. J4I, it was my fault. Something bad happened while updating my Hg archive, so the if_lua.obj was basically missing. Works now. Sorry for any inconvenience. -- You received this message from the "vim_dev" maillist. Do not top-po

Re: HTML patch included

2010-07-17 Thread Benjamin Fritz
2010/7/17 Dominique Pellé : > > Here is another problem that I see with :TOhtml.  It does not honor > concealed items. > Yes, because conceal information is not accessible via script at this time. I would definitely like to add this feature, but it will require a patch to the C code. I have look

[PATCH] Detect Ctrl + scroll wheel. (Benjamin R. Haskell)

2010-07-17 Thread Benjamin R. Haskell
This fixes the issue with mapping / for both rxvt-unicode and uxterm. -- Ben --- src/term.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/src/term.c b/src/term.c index 2e0376c..205cd35 100644 --- a/src/term.c +++ b/src/term.c @@ -4763,6 +4763,8 @@ check_termcode(max_of