What is the correct name of the Vim scripting language? I see it being called VimScript, Vim script and even VimL.

VimL is even listed on GitHub as the 10th most popular programming language! What is the history behind the VimL name? Why are the Git folks calling it VimL?

link|improve this question

62% accept rate
feedback

3 Answers

After grepping through official documentation, it seems that "Vim script" is the "most" official name since nowhere is "VimScript" mentioned in regular sentences. GetLatestVimScripts is often mentioned, but this is a script name where no underlines are allowed.

I'd guess VimL is just an abbreviation for Vim Language (Vim script). It was probably coined some time ago and became used at few places, but it's not official.

link|improve this answer
2  
I don't think "Vim script" could ever be an official name, because it's not grammatically a "proper name" at all. Proper names have all words capitalized, as in "Vim Script". See, e.g., en.wikipedia.org/wiki/Proper_name It doesn't make sense to say, "A Vim script is written in Vim script." But it does make sense to say "A Vim script is written in Vim Script." Having said all that, I would vote for VimL, which is also the name github uses for the language. – Herbert Sitz Dec 9 '10 at 17:22
It would be interesting if there was a consensus around "VimL" to appropriately tag question on StackOverflow. – Xavier T. Dec 9 '10 at 19:36
VimL seems somewhat confusing to me as it is similar to a name of some markup language. – jira Dec 10 '10 at 0:16
@Xavier: Why? "Vim" is good enough as a tag. – Luc Hermitte Dec 10 '10 at 14:27
1  
@jira: (O)Caml and ML are not markup languages. – Luc Hermitte Dec 10 '10 at 14:29
feedback

Wild guess :

As in HTML,YAML, etc the "L" stands for Language.

So VimL == Vim (script) Language.

link|improve this answer
feedback

:h usr_41.txt says Vim script language for the language, and Vim script(s) for ..., well, scripts.

The abbreviation VimL sounds more correct to me.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.