mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-19 13:33:52 +01:00
5 lines
109 B
Plaintext
5 lines
109 B
Plaintext
#defkeycomp complete-word \C-xm
|
|
local file
|
|
file=($~PREFIX*$~SUFFIX(om[1]N))
|
|
(( $#file )) && compadd -f $file
|