update predefined

This commit is contained in:
skywind3000 2018-02-03 14:47:33 +08:00
parent 420f370747
commit 616f7ba177
2 changed files with 12 additions and 12 deletions

View file

@ -23,6 +23,11 @@ _zsh_autosuggest_predefined_generate() {
echo "autosuggestions is generating: $pname"
# copy builtin predefine database
local txt="${_zsh_autosuggest_script_path}/predefined.txt"
[ -f "$txt" ] && cat "$txt" > "$pname"
# enumerate commands in $PATH and add them to ~/.zsh_autosuggest
for p ("${(@s/:/)PATH}"); do
cd "$p"
@ -47,11 +52,7 @@ _zsh_autosuggest_predefined_generate() {
done
cd "${pwd}"
print -l $suggests > "$pname"
# copy builtin predefine database
local txt="${_zsh_autosuggest_script_path}/predefined.txt"
cat "$txt" >> "$pname"
print -l $suggests >> "$pname"
}
# echo "sourced predefined"
@ -61,7 +62,6 @@ _zsh_autosuggest_strategy_predefined() {
setopt EXTENDED_GLOB
local prefix="${1//(#m)[\\*?[\]<>()|^~#]/\\$MATCH}"
local result="${history[(r)${prefix}*]}"
result=""
if [[ $result == "" ]]; then
if (( ! ${+_ZSH_AUTOSUGGEST_PREDEFINE} )); then

View file

@ -589,6 +589,11 @@ _zsh_autosuggest_predefined_generate() {
echo "autosuggestions is generating: $pname"
# copy builtin predefine database
local txt="${_zsh_autosuggest_script_path}/predefined.txt"
[ -f "$txt" ] && cat "$txt" > "$pname"
# enumerate commands in $PATH and add them to ~/.zsh_autosuggest
for p ("${(@s/:/)PATH}"); do
cd "$p"
@ -613,11 +618,7 @@ _zsh_autosuggest_predefined_generate() {
done
cd "${pwd}"
print -l $suggests > "$pname"
# copy builtin predefine database
local txt="${_zsh_autosuggest_script_path}/predefined.txt"
cat "$txt" >> "$pname"
print -l $suggests >> "$pname"
}
# echo "sourced predefined"
@ -627,7 +628,6 @@ _zsh_autosuggest_strategy_predefined() {
setopt EXTENDED_GLOB
local prefix="${1//(#m)[\\*?[\]<>()|^~#]/\\$MATCH}"
local result="${history[(r)${prefix}*]}"
result=""
if [[ $result == "" ]]; then
if (( ! ${+_ZSH_AUTOSUGGEST_PREDEFINE} )); then