summaryrefslogtreecommitdiff
path: root/functions
diff options
context:
space:
mode:
Diffstat (limited to 'functions')
-rw-r--r--functions/mkd.fish4
1 files changed, 4 insertions, 0 deletions
diff --git a/functions/mkd.fish b/functions/mkd.fish
new file mode 100644
index 0000000..e3d892f
--- /dev/null
+++ b/functions/mkd.fish
@@ -0,0 +1,4 @@
+function mkd -d "Make a directory and jump in it"
+ mkdir -p $argv
+ pushd $argv[-1]
+end