aboutsummaryrefslogtreecommitdiffstats
path: root/.functions
diff options
context:
space:
mode:
Diffstat (limited to '.functions')
-rw-r--r--.functions10
1 files changed, 10 insertions, 0 deletions
diff --git a/.functions b/.functions
index 7d2a83d..4a1e407 100644
--- a/.functions
+++ b/.functions
@@ -281,3 +281,13 @@ function v() {
vim "$@"
fi
}
+
+# `o` with no arguments opens current directory, otherwise opens the given
+# location
+function o() {
+ if [ $# -eq 0 ]; then
+ open .
+ else
+ open "$@"
+ fi
+}