I'm trying to learn a little about python scripting in GVim, but I'm having trouble with starting. Elementary things, really.

Are there any resources / tutorials concerting python scripting in Vim out there ? Simple examples which show the basic principles, would be welcomed also.

link|improve this question
feedback

4 Answers

:help python-vim is a good start. The best vim resource is always at your fingertips and the sooner you get used to referring to it the better you will get at vim overall.

I got better at searching vim help with this..

http://stackoverflow.com/questions/526858/how-do-i-make-vim-do-normal-bash-like-tab-completion-for-file-names/526940#526940

also :he vim-script-intro

I'd also recommend looking straight at the source of existing plugins that do something similar to what you want to do. That way you cut out the middle man and dont have to deal with blog ads and other distractions.

link|improve this answer
feedback

Refer the Scripting chapter in 'A Byte of Vim'.

link|improve this answer
feedback

Vimscript The Hard Way

Have you checked out Learn Vimscript The Hard Way? It is an excellent read.

Scripting Vim With Python

vim 7.0 and above can be compiled with the +python flag, which gives vim Python support. This is a (albeit, somewhat extreme) path to getting the language support you want.

Links

link|improve this answer
feedback

Your Answer

 
or
required, but never shown