Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What are some good resources for learning to develop VIM plugins?

Tags:

vim

plugins

I am learning VIM and would like to try to hack on some VIM plugins, but can't seem to find any resources for learning the scripting language. It seems like its called VIMscript, but I'm finding almost nothing useful on Google. Does anyone have any recommendations for learning how to develop VIM plugins from scratch?

Thanks

like image 920
noli Avatar asked Sep 18 '10 10:09

noli


People also ask

What is the best way to learn Vim?

The best way to learn is practice. Take a few minutes to try Vim out. If you're on a Linux system right now, open up a terminal and type vim filename. Enter insert mode and type a bit (or copy some of the text from this article into Vim) and then hit Escape to start practicing movement around the file.

Where can I practice Vim?

Learn Vim (the Smart Way) is a guide to learn the good parts of Vim. There are many places to learn Vim: the vimtutor is a great place to start and the help manual has all the references you will ever need. However, the average user needs something more than vimtutor and less than the help manual.

How hard is it to learn Vim?

The problem with learning Vim is not that it's hard to do—it's that you have to keep doing it. This guide will break that cycle, ensuring this is the last time you will learn it. There are dozens of Vim references online, but most of them either go ninja straight away, or start basic and don't go much deeper.


1 Answers

This is a nice starting point to write scripts for Vim:

http://www.ibm.com/developerworks/linux/library/l-vim-script-1/index.html

like image 102
Raimondi Avatar answered Nov 15 '22 08:11

Raimondi