mirror of
https://github.com/zsh-users/zsh-autosuggestions.git
synced 2024-11-18 09:51:06 +01:00
update predefined
This commit is contained in:
parent
8ee6d01973
commit
420f370747
2 changed files with 10 additions and 12 deletions
|
@ -23,11 +23,6 @@ _zsh_autosuggest_predefined_generate() {
|
||||||
|
|
||||||
echo "autosuggestions is generating: $pname"
|
echo "autosuggestions is generating: $pname"
|
||||||
|
|
||||||
# copy builtin predefine database
|
|
||||||
local txt="${_zsh_autosuggest_script_path}/predefined.txt"
|
|
||||||
|
|
||||||
[ -f "$txt" ] && cat "$txt" > "$pname" || touch "$pname"
|
|
||||||
|
|
||||||
# enumerate commands in $PATH and add them to ~/.zsh_autosuggest
|
# enumerate commands in $PATH and add them to ~/.zsh_autosuggest
|
||||||
for p ("${(@s/:/)PATH}"); do
|
for p ("${(@s/:/)PATH}"); do
|
||||||
cd "$p"
|
cd "$p"
|
||||||
|
@ -52,7 +47,11 @@ _zsh_autosuggest_predefined_generate() {
|
||||||
done
|
done
|
||||||
cd "${pwd}"
|
cd "${pwd}"
|
||||||
|
|
||||||
print -l $suggests >> "$pname"
|
print -l $suggests > "$pname"
|
||||||
|
|
||||||
|
# copy builtin predefine database
|
||||||
|
local txt="${_zsh_autosuggest_script_path}/predefined.txt"
|
||||||
|
cat "$txt" >> "$pname"
|
||||||
}
|
}
|
||||||
|
|
||||||
# echo "sourced predefined"
|
# echo "sourced predefined"
|
||||||
|
|
|
@ -589,11 +589,6 @@ _zsh_autosuggest_predefined_generate() {
|
||||||
|
|
||||||
echo "autosuggestions is generating: $pname"
|
echo "autosuggestions is generating: $pname"
|
||||||
|
|
||||||
# copy builtin predefine database
|
|
||||||
local txt="${_zsh_autosuggest_script_path}/predefined.txt"
|
|
||||||
|
|
||||||
[ -f "$txt" ] && cat "$txt" > "$pname" || touch "$pname"
|
|
||||||
|
|
||||||
# enumerate commands in $PATH and add them to ~/.zsh_autosuggest
|
# enumerate commands in $PATH and add them to ~/.zsh_autosuggest
|
||||||
for p ("${(@s/:/)PATH}"); do
|
for p ("${(@s/:/)PATH}"); do
|
||||||
cd "$p"
|
cd "$p"
|
||||||
|
@ -618,7 +613,11 @@ _zsh_autosuggest_predefined_generate() {
|
||||||
done
|
done
|
||||||
cd "${pwd}"
|
cd "${pwd}"
|
||||||
|
|
||||||
print -l $suggests >> "$pname"
|
print -l $suggests > "$pname"
|
||||||
|
|
||||||
|
# copy builtin predefine database
|
||||||
|
local txt="${_zsh_autosuggest_script_path}/predefined.txt"
|
||||||
|
cat "$txt" >> "$pname"
|
||||||
}
|
}
|
||||||
|
|
||||||
# echo "sourced predefined"
|
# echo "sourced predefined"
|
||||||
|
|
Loading…
Reference in a new issue