mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-03 10:21:46 +02:00
moved from Completion/X/_x_keysym
This commit is contained in:
parent
7982dce342
commit
b2e8e5c0d9
1 changed files with 22 additions and 0 deletions
22
Completion/X/Type/_x_keysym
Normal file
22
Completion/X/Type/_x_keysym
Normal file
|
@ -0,0 +1,22 @@
|
|||
#autoload
|
||||
|
||||
local expl
|
||||
|
||||
_tags keysyms || return 1
|
||||
|
||||
if (( ! $+_keysym_cache )); then
|
||||
local file
|
||||
|
||||
file=( /usr/{include,{{X11R6,openwin},local{,/X11{,R6}}}/include}/X11/keysymdef.h(N) )
|
||||
|
||||
if (( $#file )); then
|
||||
_keysym_cache=( "${(@)${(@)${(M@)${(@f)$(< $file[1])}:#\#define[ ]##XK_*}#\#define[ ]##XK_}%%[ ]*}" )
|
||||
else
|
||||
_keysym_cache=( BackSpace Tab Linefeed Clear Return Pause Escape
|
||||
Delete Left Right Up Down Space Home Begin End
|
||||
F{1,2,3,4,5,6,7,8,9,10,11,12} )
|
||||
fi
|
||||
fi
|
||||
|
||||
_wanted keysyms expl 'key symbol' \
|
||||
compadd "$@" -M 'm:{a-z}={A-Z} r:|-=* r:|=*' -a _keysym_cache
|
Loading…
Reference in a new issue