Re: Running python scripts from Vim

2006-07-28 Thread Preben Randhol
On Fri, 28 Jul 2006 10:02:21 -0400 James Vega <[EMAIL PROTECTED]> wrote: > On Fri, Jul 28, 2006 at 01:46:46PM +0200, Preben Randhol wrote: > > I have now tried several vim scripts for python to set up vim as a > > good python IDE. It has taken some time due to that not all scripts > > are well doc

Re[2]: Running python scripts from Vim

2006-07-28 Thread Alan G Isaac
On Fri, 28 Jul 2006, James Vega apparently wrote: > You might be interested in trying out PIDA (http://pida.berlios.de/). Does this install readily under Windows? Thanks, Alan Isaac

Re: Clickable error messages

2006-07-28 Thread A.J.Mechelynck
Robert Hicks wrote: Marc Weber wrote: :Robert See :h quickfix ;) Brief: :compiler perl :set makeprg=perl :make test.pl) If you want to add options to perl use set makeprg=perl\ --option\ blah (escape whitespaces) The quickfix cycle might remove some output.. depending on errorformat. I was

Re: Vim book

2006-07-28 Thread Benjamin Esham
Robert Hicks wrote: Since a bit has changed in Vim7; does anyone know of a book (in English) in the works for it? You might take a look at http://en.wikibooks.org/wiki/ Learning_vi:Vim. (As for the book plans, I have no idea.) -- Benjamin D. Esham [EMAIL PROTECTED] | AIM: bdesham128 |

Re: Clickable error messages

2006-07-28 Thread Robert Hicks
Marc Weber wrote: :Robert See :h quickfix ;) Brief: :compiler perl :set makeprg=perl :make test.pl) If you want to add options to perl use set makeprg=perl\ --option\ blah (escape whitespaces) The quickfix cycle might remove some output.. depending on errorformat. I was waiting for this q

Vim book

2006-07-28 Thread Robert Hicks
Since a bit has changed in Vim7; does anyone know of a book (in English) in the works for it? :Robert

errorlist question

2006-07-28 Thread Preben Randhol
Hi When one use :make and one get a list of errors, is it possible to get vim to display the errors in reverse order? The reason is that python gives the traceback of the error like: Traceback (most recent call last): File "unittests/dbfacadeTest.py", line 89, in testFoo self.as

Re: Visual select / paste behaviour

2006-07-28 Thread cga2000
On Fri, Jul 28, 2006 at 09:48:21AM EDT, Jürgen Krämer wrote: > > [Resending this because I noticed that the original mail had been > encoded with base64 by either my mail client or a server on the way > to the mailing list.] > > Hi, > > Roel Vanhout wrote: > > > > Take the following example: >

Re: Syntax files

2006-07-28 Thread Yakov Lerner
On 7/28/06, Max Dyckhoff <[EMAIL PROTECTED]> wrote: I have placed all the identifiers on a single line with "syn keyword (type)" at the beginning. There are two files of keywords (types and defines/enumerators), which are 250,000 characters and 650,000 characters respectively ... The way that I

Re: AsNeeded?

2006-07-28 Thread Bill McCarthy
Chip, On Thu 27-Jul-06 8:38am -0600, you wrote: > AsNeeded uses the FuncUndefined autocommand to > transparently load functions. > Commands and maps, unfortunately, are not blessed with such an autocommand. > Hence AsNeeded provides: > > :AN map-or-command > :ANX map-or-command Thanks for yo

Re: spell does not work for doxygen comments version 7

2006-07-28 Thread Bill McCarthy
On Fri 28-Jul-06 3:14am -0600, Bram Moolenaar wrote: > Bill McCarthy wrote: >> I see that the file CVS\root contains: >> >> :pserver:[EMAIL PROTECTED]:/cvsroot/vim >> >> Does that line need to be changed. > Simplest is to delete the whole tree and start again with > pserver:[EMAIL PROTECTE

Re: ctags for win32

2006-07-28 Thread Brett Calcott
Hi, Thanks for all your responses. I couldn't find exactly what I wanted, as the version that had been posted before did not include regex support, which I needed to do this: http://www.vim.org/tips/tip.php?tip_id=453 After some fiddling about, I managed to get it compiled using VC Express. Her

Re: Running python scripts from Vim

2006-07-28 Thread James Vega
On Fri, Jul 28, 2006 at 01:46:46PM +0200, Preben Randhol wrote: > I have now tried several vim scripts for python to set up vim as a good > python IDE. It has taken some time due to that not all scripts are well > documented and there are some old buggy scripts that makes other scripts > not work.

Re: creating a new file in the Explorer

2006-07-28 Thread A.J.Mechelynck
Roel Vanhout wrote: A.J.Mechelynck wrote: In the vim Explorer (:Explore), I can create a new directory by pressing 'd' and typing the directoryname. Is there something similar for creating a new, empty file? I've looked through the documentation :map:cd %:p:h new will allow you t

Re: creating a new file in the Explorer

2006-07-28 Thread Charles E Campbell Jr
Carlos Beltran wrote: Uhmm. It would be nice also to be able to rename files. :he netrw-R Regards, Chip Campbell

Re: creating a new file in the Explorer

2006-07-28 Thread Charles E Campbell Jr
Roel Vanhout wrote: In the vim Explorer (:Explore), I can create a new directory by pressing 'd' and typing the directoryname. Is there something similar for creating a new, empty file? I've looked through the documentation but couldn't find anything. I now press 'c' and type :new , but that'

Re: Visual select / paste behaviour

2006-07-28 Thread Jürgen Krämer
[Resending this because I noticed that the original mail had been encoded with base64 by either my mail client or a server on the way to the mailing list.] Hi, Roel Vanhout wrote: > > Take the following example: > > c:\test.txt > > When the cursor is on the 'm' of 'myid' and I press 'vw', a w

Re: Running python scripts from Vim

2006-07-28 Thread Tom Purl
On Fri, Jul 28, 2006 at 01:46:46PM +0200, Preben Randhol wrote: > I have now tried several vim scripts for python to set up vim as a good > python IDE. It has taken some time due to that not all scripts are well > documented and there are some old buggy scripts that makes other scripts > not work.

Re: creating a new file in the Explorer

2006-07-28 Thread Roel Vanhout
A.J.Mechelynck wrote: In the vim Explorer (:Explore), I can create a new directory by pressing 'd' and typing the directoryname. Is there something similar for creating a new, empty file? I've looked through the documentation :map:cd %:p:h new will allow you to open a new file in

Re: Visual select / paste behaviour

2006-07-28 Thread Roel Vanhout
Tim Chase wrote: > c:\test.txt > When the cursor is on the 'm' of 'myid' and I press 'vw', > a word is selected in visual mode. However, the " at the > end of 'myid' is also selected. How do I change the list > of 'word separators'? Well, the answer to your question is that there's a setting

Re: creating a new file in the Explorer

2006-07-28 Thread A.J.Mechelynck
Roel Vanhout wrote: Hi, In the vim Explorer (:Explore), I can create a new directory by pressing 'd' and typing the directoryname. Is there something similar for creating a new, empty file? I've looked through the documentation but couldn't find anything. I now press 'c' and type :new , but

RE: creating a new file in the Explorer

2006-07-28 Thread Carlos Beltran
Uhmm. It would be nice also to be able to rename files. Carlos. > -Original Message- > From: Roel Vanhout [mailto:[EMAIL PROTECTED] > Sent: Friday, July 28, 2006 2:38 PM > To: vim@vim.org > Subject: creating a new file in the Explorer > > Hi, > > In the vim Explorer (:Explore), I can

Re: Visual select / paste behaviour

2006-07-28 Thread Tim Chase
> c:\test.txt > > When the cursor is on the 'm' of 'myid' and I press 'vw', > a word is selected in visual mode. However, the " at the > end of 'myid' is also selected. How do I change the list > of 'word separators'? Well, the answer to your question is that there's a setting called 'iskeyword'

Re: Visual select / paste behaviour

2006-07-28 Thread Jürgen Krämer
Hi, Roel Vanhout wrote: > > Take the following example: > > c:\test.txt > > When the cursor is on the 'm' of 'myid' and I press 'vw', a word is > selected in visual mode. However, the " at the end of 'myid' is also > selected. How do I change the list of 'word separators'? to be exact 'w' i

Visual select / paste behaviour

2006-07-28 Thread Roel Vanhout
Hi, Take the following example: c:\test.txt When the cursor is on the 'm' of 'myid' and I press 'vw', a word is selected in visual mode. However, the " at the end of 'myid' is also selected. How do I change the list of 'word separators'? On a related note, when I have 'myid' selected and I

creating a new file in the Explorer

2006-07-28 Thread Roel Vanhout
Hi, In the vim Explorer (:Explore), I can create a new directory by pressing 'd' and typing the directoryname. Is there something similar for creating a new, empty file? I've looked through the documentation but couldn't find anything. I now press 'c' and type :new , but that's error-prone (I

Re: Running python scripts from Vim

2006-07-28 Thread Preben Randhol
Marc Weber <[EMAIL PROTECTED]> wrote on 28/07/2006 (13:27) : > I can't see your problem. Why not just create some mappings: > compiler python > set makeprg=python > :make mypyfile > or :make % ? > > What's wrong with this? lack of a propper efm. But I just managed to fix an old python compiler sc

Re: Running python scripts from Vim

2006-07-28 Thread Marc Weber
On Fri, Jul 28, 2006 at 12:22:50PM +0200, Preben Randhol wrote: > Hi > > I'm looking for a vimscript where I can easily test out my Python code > by pressing say F9 or some other function key. I have used the > runscript.vim script (http://www.vim.org/scripts/script.php%3Fscript_id=127) > > This

Running python scripts from Vim

2006-07-28 Thread Preben Randhol
Hi I'm looking for a vimscript where I can easily test out my Python code by pressing say F9 or some other function key. I have used the runscript.vim script (http://www.vim.org/scripts/script.php%3Fscript_id=127) This script has some nice things, but the main problem is that when an error happen

Re: get the umlauts right

2006-07-28 Thread A.J.Mechelynck
Tobias Herp wrote: "A.J.Mechelynck" <[EMAIL PROTECTED]> wrote: Tobias Herp wrote: I' struggling for quite a while now to get the character encoding right; What does your Vim say on this file in reply to :verbose set enc? fenc? fencs? ? encoding=latin1 fileencoding= fileencodings=uc

Re: ctags for win32

2006-07-28 Thread Vissale NEANG
Hi, I had some problems to send my previous mail to the vim list, sorry if you have already received this mail. Someone on the ctags-users mailing list has posted a ctags win32 binary (topic Binary for Windows NT/2000/XP and OS/2 (version 5.6).), here is the link to this binary built with MSVC 6

Re: ctags for win32

2006-07-28 Thread A.J.Mechelynck
Brett Calcott wrote: I'm looking to get the latest version of ctags for win32. There doesn't appear to be a binary on sourceforge. Or am I just being dense? Cheers, Brett From what I see at Sourceforge, version 5.6 of exuberant ctags isn't yet available for Windows. I suppose you can use ve

Re: get the umlauts right

2006-07-28 Thread Tobias Herp
"A.J.Mechelynck" <[EMAIL PROTECTED]> wrote: > Tobias Herp wrote: > > I' struggling for quite a while now to get the character encoding right; > > What does your Vim say on this file in reply to > > :verbose set enc? fenc? fencs? > > ? encoding=latin1 fileencoding= fileencodings=ucs-bom >

ctags for win32

2006-07-28 Thread Brett Calcott
I'm looking to get the latest version of ctags for win32. There doesn't appear to be a binary on sourceforge. Or am I just being dense? Cheers, Brett

Re: spell does not work for doxygen comments version 7

2006-07-28 Thread Bram Moolenaar
Bill McCarthy wrote: > > Carlos Beltran wrote: > > >> BTW Sourceforge has change its naming policy. It seems that the link > >> for the cvs is now: http://vim.cvs.sourceforge.net/vim/ > >> The link in the http://www.vim.org/cvs.php is thus incorrent. > > > Annoying, SF keeps changing things...