Skip to content

Instantly share code, notes, and snippets.

@JackDanger
Created May 26, 2009 19:21
Show Gist options
  • Save JackDanger/118235 to your computer and use it in GitHub Desktop.
Save JackDanger/118235 to your computer and use it in GitHub Desktop.
# put this in your ~/.irbrc
class Object
def console_reminder
puts "You're not in Terminal. CMD-} until you're out of the console."
end
# replace these with your common terminal commands
%w{gs gp gl cd l rake}.each do |cmd|
eval "alias #{cmd} console_reminder"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment