aboutsummaryrefslogtreecommitdiffhomepage
path: root/.config/fish/functions/mkcd.fish
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2021-06-01 22:23:49 +0900
committernsfisis <nsfisis@gmail.com>2021-06-01 22:23:49 +0900
commit851b47f00b199a6454a47945eaf065f5a183185c (patch)
tree1a2092cb383a69ea2b5d4a09b45c960bfe829bf0 /.config/fish/functions/mkcd.fish
parent685f99f184858c8367868ebc8701522b765889c9 (diff)
downloaddotfiles-851b47f00b199a6454a47945eaf065f5a183185c.tar.gz
dotfiles-851b47f00b199a6454a47945eaf065f5a183185c.tar.zst
dotfiles-851b47f00b199a6454a47945eaf065f5a183185c.zip
Revert "fish shell"
This reverts commit 77db37d3506edd006c0d4edc8b216d869a06f30b.
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