Re: configure script can't seem to accept in ubuntu ( = 7.10) - a tip to build vim with gui

2008-04-30 Fir de Conversatie Shawn Y. Kim
Hi, True, I did miss xserver-xorg-dev package. Even so, compiling appeared to be alright. And the vim runs perfect :-) Thanks :-) On 4월30일, 오후3시32분, François Ingelrest [EMAIL PROTECTED] wrote: Hi, On Tue, Apr 29, 2008 at 7:32 PM, Kim Shawn [EMAIL PROTECTED] wrote: As Ubuntu linux gets

Re: omnicpp very slow under windows XP

2008-04-30 Fir de Conversatie Ben Schmidt
epanda wrote: 1-Setting the path to a recursive path cause that omnicpp is very slow under windows. ex: set path= D:\\** in your _vimrc and you will see. I think this is related to an earlier-reported bug/problem in Vim itself in the thread Vim file globbing... on vim_use:

Re: Some more things to be fixed in Vim's documentation

2008-04-30 Fir de Conversatie Bram Moolenaar
Adri Verhoef wrote: :h tex-package In syntax.txt, next line: Wish To Highlight More Commmands? ~ 'Commmands' should be 'Commands'. === In usr_45.txt: URL http://www.microsoft.com/typography/fontpack/default.htm doesn't work, maybe

Re: To be fixed in Vim's documentation

2008-04-30 Fir de Conversatie Bram Moolenaar
Adri Verhoef wrote: In autocmd.txt: Search for 'the commands,'. When executing the commands, the messages from one command overwrites a 'the messages' doesn't correspond to 'overwrites', presumably the 's' in 'overwrites' should be removed (assumption is based on the third line

Re: one item less in the todo list + esperanto translation

2008-04-30 Fir de Conversatie Bram Moolenaar
Dominique Pelle wrote: 1/ In the Vim TODO list (ftp://ftp.vim.org/pub/vim/runtime/doc/todo.txt) I see: : Display problem when 'rightleft' is set, 'encoding' is utf-8 and an illegal : byte is at the start of the line. (Dominique Pelle, 2008 Jan 12) This item has actually already been

Re: To be fixed in Vim's documentation

2008-04-30 Fir de Conversatie Bram Moolenaar
James Vega wrote: On Sat, Apr 26, 2008 at 01:07:39PM +0200, Adri Verhoef wrote: :h helpgrep snip Compressed help files will not be searched (Debian compresses the help files). Compression is also used in Fedora. The only uncompressed .txt file is 'help.txt'.

[Patch] Nicer notebook tabs with GTK2

2008-04-30 Fir de Conversatie François Ingelrest
Hi, Here is a patch that improves a bit notebook tabs with GTK2. It: - Groups the creation of tab labels into one function (the code was duplicated at two places before) - Adds a file icon in front of the label Here are some screenshots:

Re: [Patch] Nicer notebook tabs with GTK2

2008-04-30 Fir de Conversatie sc
On Wednesday 30 April 2008 14:08, François Ingelrest wrote: Hi, Here is a patch that improves a bit notebook tabs with GTK2. It: - Groups the creation of tab labels into one function (the code was duplicated at two places before) - Adds a file icon in front of the label Here are some

Aw: Re: Compiler warnings HP-UX

2008-04-30 Fir de Conversatie armin-vim-spam
Armin wrote: I would simply ignore these. According to my manpage the type should be XIDProc. Probably can't make it work without warnings for everybody. OK, ignored. cc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_MOTIF -I/usr/local/include -g -o objects/option.o

Re: [Patch] Nicer notebook tabs with GTK2

2008-04-30 Fir de Conversatie Mikolaj Machowski
Dnia Wednesday 30 of April 2008, François Ingelrest napisał: http://www.silent-blade.org/misc/gvim-notebook-before.png http://www.silent-blade.org/misc/gvim-notebook-after.png Comments are welcome :-) Are icons tied with MIME system? So it will be different icon for HTML file, different for

Linewise Visual highlight problem

2008-04-30 Fir de Conversatie Dasn
It seems highlighted wrong in Visual Line mode with: vim -u NONE -c se sbr=+ smd wrap co=80 lines=25|pu! =repeat('k',2000)| norm $ Then press 'V' to see the problem. -- Dasn --~--~-~--~~~---~--~~ You received this message from the vim_dev maillist. For more

Is this #define highlighted right?

2008-04-30 Fir de Conversatie Dasn
$ cat test.c #define MAX 12 #define PIPE_SIZE (12) $ vim -Nu NONE +syn on test.c Please note the PIPE_SIZE. -- Dasn --~--~-~--~~~---~--~~ You received this message from the vim_dev maillist. For more information, visit http://www.vim.org/maillist.php

Re: [Patch] Nicer notebook tabs with GTK2

2008-04-30 Fir de Conversatie Christian J. Robinson
On Wed, 30 Apr 2008, Mikolaj Machowski wrote: Dnia Wednesday 30 of April 2008, François Ingelrest napisa?: http://www.silent-blade.org/misc/gvim-notebook-before.png http://www.silent-blade.org/misc/gvim-notebook-after.png Comments are welcome :-) Are icons tied with MIME system? So

Re: Is this #define highlighted right?

2008-04-30 Fir de Conversatie Dasn
On 01/05/08 11:04 +1000, Ben Schmidt wrote: Dasn wrote: $ cat test.c #define MAX 12 #define PIPE_SIZE (12) $ vim -Nu NONE +syn on test.c Please note the PIPE_SIZE. Looks fine to me. What do you see? I get the MAX highlighted as Macro (which is fine), while the

Re: [Patch] Nicer notebook tabs with GTK2

2008-04-30 Fir de Conversatie François Ingelrest
2008/5/1 Christian J. Robinson [EMAIL PROTECTED]: Are icons tied with MIME system? So it will be different icon for HTML file, different for C++ .h header? Actually, Vim already has the filetype detection system, so an icon for each filetype could be defined. I like this idea, but