Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add shortcut for mgage notes
  • Loading branch information
MEHColeman committed Oct 12, 2015
1 parent 297feb9 commit e3db54c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions oh-my-zsh_custom/plugins/mark/mark.plugin.zsh
Expand Up @@ -2,6 +2,10 @@ notes() { vi ~/notes/$1; }
_notes() { _files -W ~/notes -/; }
compdef _notes notes

mgage() { cd ~/dev/mgage/$1; }
_mgage() { _files -W ~/dev/mgage -/; }
compdef _mgage mgage

msp() { cd ~/dev/msp/$1; }
_msp() { _files -W ~/dev/msp -/; }
compdef _msp msp
Expand Down

0 comments on commit e3db54c

Please sign in to comment.