Skip to content

Instantly share code, notes, and snippets.

@makevoid
Created September 7, 2011 00:42
Show Gist options
  • Select an option

  • Save makevoid/1199432 to your computer and use it in GitHub Desktop.

Select an option

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