zsh/Doc/Zsh/mod_zleparameter.yo

32 lines
1.2 KiB
Plaintext
Raw Normal View History

COMMENT(!MOD!zsh/zleparameter
Access to internals of the Zsh Line Editor via parameters.
!MOD!)
1999-10-26 17:36:11 +02:00
cindex(parameters, special)
The tt(zsh/zleparameter) module defines two special parameters that can be
1999-10-26 17:36:11 +02:00
used to access internal information of the Zsh Line Editor (see
ifzman(zmanref(zshzle))\
ifnzman(noderef(Zsh Line Editor))\
).
startitem()
vindex(keymaps)
item(tt(keymaps))(
1999-10-26 17:36:11 +02:00
This array contains the names of the keymaps currently defined.
)
vindex(widgets)
item(tt(widgets))(
This associative array contains one entry per widget. The name
1999-10-26 17:36:11 +02:00
of the widget is the key and the value gives information about the
widget. It is either
the string `tt(builtin)' for builtin widgets,
a string of the form `tt(user:)var(name)' for user-defined widgets,
where var(name) is the name of the shell function implementing the widget,
a string of the form `tt(completion:)var(type)tt(:)var(name)'
for completion widgets,
or a null value if the widget is not yet fully defined.
In the penultimate case, var(type) is the name of the builtin widget the
1999-10-26 17:36:11 +02:00
completion widget imitates in its behavior and var(name) is the name
of the shell function implementing the completion widget.
)
enditem()