diff --git a/Troubleshooting.md b/Troubleshooting.md index fc59a52..6424043 100644 --- a/Troubleshooting.md +++ b/Troubleshooting.md @@ -7,14 +7,14 @@ these steps to check: ```zsh setopt EXTENDED_GLOB for ZDOTFILE in /etc/(zsh/)#(z|.z)(shenv|profile|shrc|login)(N) ${ZDOTDIR:-${HOME}}/.z(shenv|profile|shrc|login)(N); do - if grep -Eq '^[^#]*compinit' ${ZDOTFILE}; then + if grep -Eq '^[^#]*\bcompinit\b' ${ZDOTFILE}; then print -u2 -P "%F{yellow}! You seem to be already calling %Bcompinit%b in %B${ZDOTFILE}%b.%f" fi done ``` 2. If there's any output, you can either: - * Remove or disable the `compinit` call from each of the mentioned files: + * Remove the `compinit` call from each of the mentioned files: * If you can edit the mentioned file, remove or comment the lines similar to these: ``` autoload -Uz compinit @@ -25,4 +25,5 @@ these steps to check: * Or remove the `completion` module: 1. Remove or comment the `zmodule completion` line from your `~/.zimrc` file. 2. Run `zimfw build` in your command prompt. - 3. Restart your terminal. + +3. Restart your terminal.