From 95c51a49caac3b4e334da961438bd971592aba25 Mon Sep 17 00:00:00 2001 From: Michael Anckaert Date: Tue, 8 May 2018 14:50:35 +0200 Subject: [PATCH] Fixed issue #11 --- plugins/core/core.plugin.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/core/core.plugin.sh b/plugins/core/core.plugin.sh index 00be030..3a100d4 100644 --- a/plugins/core/core.plugin.sh +++ b/plugins/core/core.plugin.sh @@ -24,7 +24,7 @@ # mcd: Makes new Dir and jumps inside # -------------------------------------------------------------------- - mcd () { builtin mkdir -p -- "$*" ; builtin cd -- "$*" ; } + mcd () { mkdir -p -- "$*" ; builtin cd -- "$*" ; } # mans: Search manpage given in agument '1' for term given in argument '2' (case insensitive) # displays paginated result with colored search terms and two lines surrounding each hit.