Skip to content

Instantly share code, notes, and snippets.

@arnorhs
Created September 11, 2011 23:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arnorhs/1210274 to your computer and use it in GitHub Desktop.
Save arnorhs/1210274 to your computer and use it in GitHub Desktop.
From the blog entry: Why use vim?
function myFunction () {
// do something here
}
function otherFunction () {
// call the other function:
}
function myFunction () {
// do something here
}
function otherFunction () {
// call the other function:
myFunction();
myFunction("well, yeah");
}
function myFunction () {
// do something here
}
function otherFunction () {
// call the other function:
myFunction();
myFunction("well, yeah");
myFunction("well, yeah");
// some more stuff
var something = myFunction("that's it");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment