diff options
Diffstat (limited to '.functions')
-rw-r--r-- | .functions | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -261,3 +261,12 @@ function m() { mate "$@" fi } +# `s` with no arguments opens the current directory in Sublime, otherwise opens +# the given location +function s() { + if [ $# -eq 0 ]; then + subl . + else + subl "$@" + fi +} |