Re: BUG: Vim always crashes with some steps

2009-10-11 Fir de Conversatie Dominique Pellé
Yukihiro Nakadaira wrote: > Kana Natsuno wrote: >> On Mon, 12 Oct 2009 05:03:27 +0900, Bram Moolenaar >> wrote: >>> Can you somehow simplify the way to reproduce this and send me the Vim >>> script for this? >> >> Sorry, I tried to simplify before reporting but failed.  Because the >> problem I

Re: BUG: Vim always crashes with some steps

2009-10-11 Fir de Conversatie Yukihiro Nakadaira
Kana Natsuno wrote: > On Mon, 12 Oct 2009 05:03:27 +0900, Bram Moolenaar wrote: >> Can you somehow simplify the way to reproduce this and send me the Vim >> script for this? > > Sorry, I tried to simplify before reporting but failed. Because the > problem I encountered seems to depend on the nu

Re: BUG: Vim always crashes with some steps

2009-10-11 Fir de Conversatie Kana Natsuno
On Mon, 12 Oct 2009 05:03:27 +0900, Bram Moolenaar wrote: > Can you somehow simplify the way to reproduce this and send me the Vim > script for this? Sorry, I tried to simplify before reporting but failed. Because the problem I encountered seems to depend on the number/order of operations, and

Re: stale runtime files

2009-10-11 Fir de Conversatie Dominique Pellé
Bram Moolenaar wrote: > Markus Heidelberg wrote: > >> during some discussion with an Arch Linux user about the Arch Vim >> package, we noticed the following: >> >> These files have been removed from the vim tarballs in June/July 2008, >> but are still present on the ftp server and should be remov

Re: [PATCH] install runtime/ftplugin/logtalk.dict

2009-10-11 Fir de Conversatie Bram Moolenaar
Markus Heidelberg wrote: > It is used by runtime/ftplugin/logtalk.vim > --- > > I'm not a logtalk user, this is just another issue we encountered when > looking at the Arch Linux Vim package. > > src/Makefile |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/src/

Re: stale runtime files

2009-10-11 Fir de Conversatie Bram Moolenaar
Markus Heidelberg wrote: > during some discussion with an Arch Linux user about the Arch Vim > package, we noticed the following: > > These files have been removed from the vim tarballs in June/July 2008, > but are still present on the ftp server and should be removed: > /usr/share/vim/vim72/

Re: BUG: Vim always crashes with some steps

2009-10-11 Fir de Conversatie Bram Moolenaar
Kana Natsuno wrote: > Hello there. > > I encountered a problem that Vim always crashes whenever I did some steps. > To reproduce the problem, please try the following command (see the > attached file "vim-crash-test.sh" for the details of the step I did): > > /bin/bash vim-crash-test.sh >

Re: stale runtime files

2009-10-11 Fir de Conversatie Dominique Pellé
Markus Heidelberg wrote: > Hello, > > during some discussion with an Arch Linux user about the Arch Vim > package, we noticed the following: > > These files have been removed from the vim tarballs in June/July 2008, > but are still present on the ftp server and should be removed: >  /usr/share/vi

stale runtime files

2009-10-11 Fir de Conversatie Markus Heidelberg
Hello, during some discussion with an Arch Linux user about the Arch Vim package, we noticed the following: These files have been removed from the vim tarballs in June/July 2008, but are still present on the ftp server and should be removed: /usr/share/vim/vim72/keymap/bulgarian.vim /usr/sha

[PATCH] install runtime/ftplugin/logtalk.dict

2009-10-11 Fir de Conversatie Markus Heidelberg
It is used by runtime/ftplugin/logtalk.vim --- I'm not a logtalk user, this is just another issue we encountered when looking at the Arch Linux Vim package. src/Makefile |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/Makefile b/src/Makefile index 02b8d6c..688dbad

BUG: Vim always crashes with some steps

2009-10-11 Fir de Conversatie Kana Natsuno
Hello there. I encountered a problem that Vim always crashes whenever I did some steps. To reproduce the problem, please try the following command (see the attached file "vim-crash-test.sh" for the details of the step I did): /bin/bash vim-crash-test.sh The crash is caused by a memory access

Re: fold.c maximum fold level

2009-10-11 Fir de Conversatie Bram Moolenaar
Noel Henson wrote: > It seems that there may be a hard-coded, integer setting in an instance > where MAX_LEVEL should be used. > > In fold.c, line 1946 > > level = foldinfo->fi_level; > if (level > 50) > level = 50; > > Shouldn't this read: > > level = foldinfo->

Re: "./vimXX/src/syntax.c" as an external utility?

2009-10-11 Fir de Conversatie Guido van Steen
Hi Nikolai, Thanks for your advice. I am not sure though if writing a zsh script will be much simpler for me. My problem is that I am unfamiliar with VIM's syntax files. For this reason I thought that I might be able to use VIM which provides syntax/lexical coloring/highlighting already.

Re: "./vimXX/src/syntax.c" as an external utility?

2009-10-11 Fir de Conversatie Guido van Steen
Hi Yakov, Thanks a lot! I did not know that VIM could be run in batch mode. That is a good feature to know about anyway! I just tried it out but unfortunately (on my laptop) it takes about 150 miliseconds to process a simple command. So I am afraid this will not be usable for on-the-fly syn

Re: "./vimXX/src/syntax.c" as an external utility?

2009-10-11 Fir de Conversatie Nikolai Weibull
On Sun, Oct 11, 2009 at 00:46, Guido van Steen wrote: > My question is: Could someone give me some idea on how this "syntax.c" file > could be turned into into an external program, which takes a "zsh file" as > its input, and which provides the information on the syntax/lexical > highlighting

Re: "./vimXX/src/syntax.c" as an external utility?

2009-10-11 Fir de Conversatie Yakov Lerner
On Sun, Oct 11, 2009 at 00:46, Guido van Steen wrote: > > Dear VIM developers, > > I would like to use VIM's syntax/lexical highlighting/coloring in order to > color the command line in zsh - and if possible highlight it as well. (For > zsh: see "www.zsh.org"). I would actually hope that this c