aboutsummaryrefslogtreecommitdiffhomepage
path: root/.config/fish/functions/mkcd.fish
diff options
context:
space:
mode:
Diffstat (limited to '.config/fish/functions/mkcd.fish')
-rw-r--r--.config/fish/functions/mkcd.fish9
1 files changed, 0 insertions, 9 deletions
diff --git a/.config/fish/functions/mkcd.fish b/.config/fish/functions/mkcd.fish
deleted file mode 100644
index bba3238..0000000
--- a/.config/fish/functions/mkcd.fish
+++ /dev/null
@@ -1,9 +0,0 @@
-function mkcd
- if [ (count $argv) != 1 ]
- echo "Usage: mkcd DIR"
- return 1
- end
-
- mkdir -p $argv[1]
- cd $argv[1]
-end