mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-11-27 02:50:57 +01:00
10 lines
200 B
Text
10 lines
200 B
Text
#compdef -k complete-word \e/
|
|
|
|
local expl
|
|
|
|
if [[ -n "$compconfig[history_sort]" ]]; then
|
|
_description expl 'history word'
|
|
else
|
|
_description -V expl 'history word'
|
|
fi
|
|
compgen "$expl[@]" -Q -H 0 ''
|