Vimscript is the scripting language built into the text editor Vim. It can also be referred to as "Vim Language" or "VimL".

learn more… | top users | synonyms

0
votes
0answers
7 views

Vimscript command to fix broken tab-completions

I've just hacked the following together and added it to my .vimrc file. I don't know very much vimscript at all, so any suggestions would be appreciated! ...
7
votes
1answer
87 views

Map command in VIM

Background I've just started using VIM and have become comfortable with navigation. I'm attempting to reduce repetitive tasks and thought I would take a crack at mapping. I was able to accomplish my ...
3
votes
0answers
46 views

Scraping paths from a Gruntfile

As a part of my Tabv Vim plugin (which at this stage is nothing more than a pitiful rag-tag assortment of half-baked hacks), I have a function which attempts to guess the directory paths for main ...
1
vote
1answer
68 views

Checking if a git repository needs to be updated

I made a small Vim distribution that uses vundle. I decided to make a small function that checks if the repository must be updated. ...