aboutsummaryrefslogtreecommitdiffstats
path: root/.functions
diff options
context:
space:
mode:
authorgregstallings <gregstallings@gmail.com>2013-09-21 16:24:33 +0200
committerMathias Bynens <mathias@qiwi.be>2013-09-21 16:25:42 +0200
commit6dd0179645326ff59cb2268bd5aab99f2c403443 (patch)
tree45697d55089c0a3f0de3c6ebc82a0a114fd41097 /.functions
parent3dc47ffd5559eddf7b1a5ce1e2085fa072ad817f (diff)
downloaddotfiles-6dd0179645326ff59cb2268bd5aab99f2c403443.tar.gz
dotfiles-6dd0179645326ff59cb2268bd5aab99f2c403443.tar.bz2
dotfiles-6dd0179645326ff59cb2268bd5aab99f2c403443.zip
.functions: Add `s` to open stuff in Sublime Text
Closes #252.
Diffstat (limited to '.functions')
-rw-r--r--.functions9
1 files changed, 9 insertions, 0 deletions
diff --git a/.functions b/.functions
index cf64dc6..40ef656 100644
--- a/.functions
+++ b/.functions
@@ -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
+}