diff options
author | Tanaka Akira <akr@users.sourceforge.net> | 1999-10-26 15:36:11 +0000 |
---|---|---|
committer | Tanaka Akira <akr@users.sourceforge.net> | 1999-10-26 15:36:11 +0000 |
commit | 65392c396bc521661593d1fa028b8a2d0b2461af (patch) | |
tree | e9ab8ff5c234264fdf3d57053250330bec88ee89 /Doc/Zsh | |
parent | 520116ec683392ccf8a905dd01768865a390de85 (diff) | |
download | zsh-65392c396bc521661593d1fa028b8a2d0b2461af.tar.gz zsh-65392c396bc521661593d1fa028b8a2d0b2461af.tar.xz zsh-65392c396bc521661593d1fa028b8a2d0b2461af.zip |
Initial revision
Diffstat (limited to 'Doc/Zsh')
-rw-r--r-- | Doc/Zsh/mod_complete.yo | 7 | ||||
-rw-r--r-- | Doc/Zsh/mod_zleparameter.yo | 28 |
2 files changed, 35 insertions, 0 deletions
diff --git a/Doc/Zsh/mod_complete.yo b/Doc/Zsh/mod_complete.yo new file mode 100644 index 000000000..558bbc4ae --- /dev/null +++ b/Doc/Zsh/mod_complete.yo @@ -0,0 +1,7 @@ +texinode(The complete Module)(The compctl Module)(The clone Module)(Zsh Modules) +sect(The complete Module) +The tt(compctl) module makes available several builtin commands which +can be used in user-defined completion widgets, see +ifzman(zmanref(zshcompwid))\ +ifnzman(noderef(Completion Widgets))\ +. diff --git a/Doc/Zsh/mod_zleparameter.yo b/Doc/Zsh/mod_zleparameter.yo new file mode 100644 index 000000000..cf79668e4 --- /dev/null +++ b/Doc/Zsh/mod_zleparameter.yo @@ -0,0 +1,28 @@ +texinode(The zleparameter Module)()(The zle Module)(Zsh Modules) +sect(The zleparameter Module) +cindex(parameters, special) +The tt(zleparameter) module defines two special parameters that can be +used to access internal information of the Zsh Line Editor (see +ifzman(zmanref(zshzle))\ +ifnzman(noderef(Zsh Line Editor))\ +). + +startitem() +vindex(zlekeymaps) +item(tt(zlekeymaps))( +This array contains the names of the keymaps currently defined. +) +vindex(zlewidgets) +item(tt(zlewidgets))( +This associative array contains one entry per widget defined. The name +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, or it is a string of the form +`tt(completion:)var(type)tt(:)var(name)', for completion widgets. In +the last case var(type) is the name of the builtin widgets the +completion widget imitates in its behavior and var(name) is the name +of the shell function implementing the completion widget. +) +enditem() |