mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-28 06:30:57 +02:00
10 lines
148 B
Text
10 lines
148 B
Text
#autoload
|
|
|
|
local _w3mhistory
|
|
|
|
if [[ -s ~/.w3m/history ]]; then
|
|
_w3mhistory=(${(f)"$(<$HOME/.w3m/history)"})
|
|
compadd $_w3mhistory
|
|
fi
|
|
|
|
_urls -f
|