From d75170d7802dfcd992fb4b72a2030698a1835432 Mon Sep 17 00:00:00 2001 From: mgild Date: Thu, 13 Sep 2018 16:21:01 -0700 Subject: [PATCH] Updated Examples (markdown) --- Examples.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Examples.md b/Examples.md index f7218ae..5eb8f56 100644 --- a/Examples.md +++ b/Examples.md @@ -801,6 +801,7 @@ v() { Like normal cd but opens an interactive navigation window when called with no arguments For ls, use -FG instead of --color=always on osx +```sh function cd() { if [[ "$#" != 0 ]]; then builtin cd "$@"; @@ -819,6 +820,7 @@ function cd() { builtin cd "$dir" &> /dev/null done } +``` Fish like interactive tab completion for cd in zsh.