Browse Source

Ensure compinit updates its modified date

`compinit -i` doesn't always change zcompdump, which means that the
`compinit -C` condition fails to run until the completions change.
When we `compinit -i`, we should touch the file too to solve this.
master
mattmc3 3 years ago committed by Indrajit Raychaudhuri
parent
commit
af520f0186
  1. 1
      modules/completion/init.zsh

1
modules/completion/init.zsh

@ -40,6 +40,7 @@ if [[ $_comp_path(#qNmh-20) ]]; then @@ -40,6 +40,7 @@ if [[ $_comp_path(#qNmh-20) ]]; then
else
mkdir -p "$_comp_path:h"
compinit -i -d "$_comp_path"
touch "$_comp_path"
fi
unset _comp_path

Loading…
Cancel
Save