Skip to content

Instantly share code, notes, and snippets.

@arnorhs
Created September 11, 2011 23:24
Show Gist options
  • Select an option

  • Save arnorhs/1210274 to your computer and use it in GitHub Desktop.

Select an option

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