mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-26 16:40:29 +01: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
|