I guess I'm now forced to disclose my links:

NERDTree, the vim file browser:
http://www.vim.org/scripts/script.php?script_id=1658
Tag List, the vim source code browser: http://vim-taglist.sourceforge.net/
Search & Destroy: http://www.geocities.com/volontir/     **** A
definite must read ****

Vim piping: it's badly explained here
http://www.linux.com/feature/57727 so I'll do a quick resume:

the command line command

:42,67 ! [cmd]

will pipe lines 42 to 67 (inclusively) to the shell command specified
in [cmd] and pipe back both stderr and stdout back to the vim buffer,
replacing lines 42 to 67 in the file. I used it to pipe a piece of
code to python and get the output back to the file.

Try it out, it won't hurt. Don't forget that u (undo) works, even for
that command, so I ofter use trial and error to get what I want.

That's about it,
--Rory


On Thu, Oct 9, 2008 at 10:42 AM, Justin Mason <[EMAIL PROTECTED]> wrote:
>
>
>> Some links as promised:
>>
>> http://www.pixelbeat.org/talks/vim_python_tips
>> http://www.geany.org/
>> http://www.pixelbeat.org/vim.tips.html
>> http://www.pixelbeat.org/settings/.vimrc
>> http://www.pixelbeat.org/scripts/inpy
>> http://blog.sontek.net/2008/05/11/python-with-a-modular-ide-vim/
>
> hey Pádraig,
>
> if you're bored you could try out vim-flymake:
>
>  http://madscientist.jp/~ikegami/diary/20080515.html#p01
>  http://github.com/kana/vim-flymake/tree/master
>
> on-the-fly build/syntax checking for VIM.
> I've had a vague project in the back of my mind to integrate that with
> VIM 7's "compiler" support...
>
> --j.
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Python Ireland" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.ie/group/pythonireland?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to