Skip to content

Instantly share code, notes, and snippets.

@makevoid
Created September 7, 2011 00:42
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 makevoid/1199432 to your computer and use it in GitHub Desktop.
Save makevoid/1199432 to your computer and use it in GitHub Desktop.
A function in my .profile to help me remember to learn vim :)
function editor() { # randomly chooses an editor for you :)
[[ `expr $RANDOM % 2` == 0 ]] && editor="vim" || editor="mate"
$editor $1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment