Re: Files in ftdetect dirs are not searched

2008-12-30 Fir de Conversatie Matt Wozniski
On Tue, Dec 30, 2008 at 1:14 PM, Daniel Schierbeck wrote: > > I have added several directories to my runtimepath, each corresponding > to a git repository. For example, I have a directory ~/Projects/vim- > rack that contains ftdetect/rack.vim and syntax/rack.vim. I'm able to > manually :set filety

if_python: vim.eval('recursive object') do not return recursive object.

2008-12-30 Fir de Conversatie Yukihiro Nakadaira
vim.eval('recursive object') do not return recursive object. It returns deeply nested object instead and each object do not point same object. The attached patch fixes this problem. Steps To Reproduce: let x = {} let x.x = x let y = [] call add(y, y) python

Re: Vim and Python 3.0 incompatibilities

2008-12-30 Fir de Conversatie Tony Mechelynck
On 30/12/08 20:58, Daniel Hast wrote: > Since Python 3.0 is incompatible with earlier versions of Python, it is > also incompatible with Vim 7.2, apparently due to changes in the C > interface. I first brought this up on the vim_use mailing list, but it > seems to be more of development issue sinc

Re: Files in ftdetect dirs are not searched

2008-12-30 Fir de Conversatie Tony Mechelynck
On 30/12/08 19:14, Daniel Schierbeck wrote: > I have added several directories to my runtimepath, each corresponding > to a git repository. For example, I have a directory ~/Projects/vim- > rack that contains ftdetect/rack.vim and syntax/rack.vim. I'm able to > manually :set filetype=rack (i.e. th

Vim and Python 3.0 incompatibilities

2008-12-30 Fir de Conversatie Daniel Hast
Since Python 3.0 is incompatible with earlier versions of Python, it is also incompatible with Vim 7.2, apparently due to changes in the C interface. I first brought this up on the vim_use mailing list, but it seems to be more of development issue since it deals with Vim's source code. (original di

Files in ftdetect dirs are not searched

2008-12-30 Fir de Conversatie Daniel Schierbeck
I have added several directories to my runtimepath, each corresponding to a git repository. For example, I have a directory ~/Projects/vim- rack that contains ftdetect/rack.vim and syntax/rack.vim. I'm able to manually :set filetype=rack (i.e. the syntax/rack.vim file is picked up), but the ftdete

Re: Patch 7.2.076

2008-12-30 Fir de Conversatie Dominique Pelle
Bram Moolenaar wrote: > Patch 7.2.076 > Problem:rename(from, to) deletes the file if "from" and "to" are not equal >but still refer to the same file. E.g., on a FAT32 filesystem >under Unix. > Solution: Go through another file name. > Files: src/fileio.c > > >

Re: Patch 7.2.072 (extra)

2008-12-30 Fir de Conversatie Tony Mechelynck
On 30/12/08 16:47, harpchad wrote: > Tony, your patch applies correctly. Will the corrected patch be moved > to ftp://ftp.vim.org/pub/vim/patches/7.2 at some point (and the md5sum > updated)? > > Thanks, Chad Harp I hope so, but only Bram can give the answer to that. Best regards, Tony. -- Adu

Re: Patch 7.2.072 (extra)

2008-12-30 Fir de Conversatie harpchad
Tony, your patch applies correctly. Will the corrected patch be moved to ftp://ftp.vim.org/pub/vim/patches/7.2 at some point (and the md5sum updated)? Thanks, Chad Harp --~--~-~--~~~---~--~~ You received this message from the "vim_dev" maillist. For more informati

Re: Patch 7.2.076

2008-12-30 Fir de Conversatie Tony Mechelynck
On 30/12/08 16:16, Bram Moolenaar wrote: > > Patch 7.2.076 > Problem:rename(from, to) deletes the file if "from" and "to" are not equal > but still refer to the same file. E.g., on a FAT32 filesystem > under Unix. > Solution: Go through another file name. > Files:

Patch 7.2.076

2008-12-30 Fir de Conversatie Bram Moolenaar
Patch 7.2.076 Problem:rename(from, to) deletes the file if "from" and "to" are not equal but still refer to the same file. E.g., on a FAT32 filesystem under Unix. Solution: Go through another file name. Files: src/fileio.c *** ../vim-7.2.075/src/fileio.c Fri