Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Oh My Zsh
Commits
a9c88209
Commit
a9c88209
authored
Sep 29, 2015
by
Robby Russell
Browse files
Merge pull request #4426 from apjanke/turn-off-3889-by-default
completion: turn off the #3889 compfix check by default
parents
52e2aaee
4589bc6c
Changes
1
Show whitespace changes
Inline
Side-by-side
oh-my-zsh.sh
View file @
a9c88209
...
@@ -11,6 +11,8 @@ fpath=($ZSH/functions $ZSH/completions $fpath)
...
@@ -11,6 +11,8 @@ fpath=($ZSH/functions $ZSH/completions $fpath)
# Load all stock functions (from $fpath files) called below.
# Load all stock functions (from $fpath files) called below.
autoload
-U
compaudit compinit
autoload
-U
compaudit compinit
:
${
ZSH_DISABLE_COMPFIX
:
=true
}
# Set ZSH_CUSTOM to the path where your custom config files
# Set ZSH_CUSTOM to the path where your custom config files
# and plugins exists, or else we will use the default custom/
# and plugins exists, or else we will use the default custom/
if
[[
-z
"
$ZSH_CUSTOM
"
]]
;
then
if
[[
-z
"
$ZSH_CUSTOM
"
]]
;
then
...
@@ -62,13 +64,17 @@ if [ -z "$ZSH_COMPDUMP" ]; then
...
@@ -62,13 +64,17 @@ if [ -z "$ZSH_COMPDUMP" ]; then
ZSH_COMPDUMP
=
"
${
ZDOTDIR
:-${
HOME
}}
/.zcompdump-
${
SHORT_HOST
}
-
${
ZSH_VERSION
}
"
ZSH_COMPDUMP
=
"
${
ZDOTDIR
:-${
HOME
}}
/.zcompdump-
${
SHORT_HOST
}
-
${
ZSH_VERSION
}
"
fi
fi
# If completion insecurities exist, warn the user without enabling completions.
if
[[
$ZSH_DISABLE_COMPFIX
!=
true
]]
;
then
if
!
compaudit &>/dev/null
;
then
# If completion insecurities exist, warn the user without enabling completions.
if
!
compaudit &>/dev/null
;
then
# This function resides in the "lib/compfix.zsh" script sourced above.
# This function resides in the "lib/compfix.zsh" script sourced above.
handle_completion_insecurities
handle_completion_insecurities
# Else, enable and cache completions to the desired file.
# Else, enable and cache completions to the desired file.
else
else
compinit
-d
"
${
ZSH_COMPDUMP
}
"
compinit
-d
"
${
ZSH_COMPDUMP
}
"
fi
else
compinit
-i
-d
"
${
ZSH_COMPDUMP
}
"
fi
fi
# Load all of the plugins that were defined in ~/.zshrc
# Load all of the plugins that were defined in ~/.zshrc
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment