Merge pull request #15 from MichaelAnckaert/issue-11

Fixed issue #11
This commit is contained in:
Toan Nguyen 2018-05-08 21:49:23 +07:00 committed by GitHub
commit 1e31ac204f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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.