Update external completions
This commit is contained in:
parent
ccf181379a
commit
3b87a4db48
4
.gitmodules
vendored
4
.gitmodules
vendored
|
@ -4,6 +4,6 @@
|
||||||
[submodule "modules/syntax-highlighting/external"]
|
[submodule "modules/syntax-highlighting/external"]
|
||||||
path = modules/syntax-highlighting/external
|
path = modules/syntax-highlighting/external
|
||||||
url = https://github.com/zsh-users/zsh-syntax-highlighting.git
|
url = https://github.com/zsh-users/zsh-syntax-highlighting.git
|
||||||
[submodule "modules/completion/functions"]
|
[submodule "modules/completion/external"]
|
||||||
path = modules/completion/functions
|
path = modules/completion/external
|
||||||
url = https://github.com/zsh-users/zsh-completions.git
|
url = https://github.com/zsh-users/zsh-completions.git
|
||||||
|
|
1
modules/completion/external
Submodule
1
modules/completion/external
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 589938ffc9c241952743051d907f7cb451eb157f
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit 8b89dd9d10e86313f49fafdf88e8540f97346f33
|
|
|
@ -11,6 +11,9 @@ if [[ "$TERM" == 'dumb' ]]; then
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Add zsh-completions to $fpath.
|
||||||
|
fpath=("${0:h}/external/src" $fpath)
|
||||||
|
|
||||||
# Load and initialize the completion system ignoring insecure directories.
|
# Load and initialize the completion system ignoring insecure directories.
|
||||||
autoload -Uz compinit && compinit -i
|
autoload -Uz compinit && compinit -i
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue