From 6dd0179645326ff59cb2268bd5aab99f2c403443 Mon Sep 17 00:00:00 2001 From: gregstallings Date: Sat, 21 Sep 2013 16:24:33 +0200 Subject: .functions: Add `s` to open stuff in Sublime Text Closes #252. --- .functions | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to '.functions') 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 +} -- cgit v1.2.3