From 69020739848ec04f6d09ab0c43422d7bbb31ad67 Mon Sep 17 00:00:00 2001 From: Kreig Zimmerman <12191766+kreig303@users.noreply.github.com> Date: Fri, 21 Feb 2020 17:28:24 -0500 Subject: [PATCH] docs(Shell-Completion.md): modified conditional for .zshrc to include call to compinit --- docs/Shell-Completion.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/Shell-Completion.md b/docs/Shell-Completion.md index 1ace0e5ba6..d56cfd1c93 100644 --- a/docs/Shell-Completion.md +++ b/docs/Shell-Completion.md @@ -32,6 +32,9 @@ To make Homebrew's completions available in `zsh`, you must get the Homebrew-man ```sh if type brew &>/dev/null; then FPATH=$(brew --prefix)/share/zsh/site-functions:$FPATH + + autoload -Uz compinit + compinit fi ```