mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-03 08:11:03 +02:00
12848: Doc/Zsh/zle.yo: Alphabetize list of parameters
This commit is contained in:
parent
1254055f09
commit
5637f95bc0
2 changed files with 38 additions and 36 deletions
|
@ -1,5 +1,7 @@
|
||||||
2000-09-20 Andrej Borsenkow <Andrej.Borsenkow@mow.siemens.ru>
|
2000-09-20 Andrej Borsenkow <Andrej.Borsenkow@mow.siemens.ru>
|
||||||
|
|
||||||
|
* 12848: Doc/Zsh/zle.yo: Alphabetize list of parameters
|
||||||
|
|
||||||
* 12842 with corrections of Bart: Doc/Zsh/contrib.yo: Clarify
|
* 12842 with corrections of Bart: Doc/Zsh/contrib.yo: Clarify
|
||||||
digest file usage.
|
digest file usage.
|
||||||
|
|
||||||
|
|
|
@ -128,6 +128,12 @@ The entire contents of the edit buffer. If it is written to, the
|
||||||
cursor remains at the same offset, unless that would put it outside the
|
cursor remains at the same offset, unless that would put it outside the
|
||||||
buffer.
|
buffer.
|
||||||
)
|
)
|
||||||
|
vindex(BUFFERLINES)
|
||||||
|
item(tt(BUFFERLINES))(
|
||||||
|
The number of screen lines needed for the edit buffer currently
|
||||||
|
displayed on screen (i.e. without any changes to the preceding
|
||||||
|
parameters done after the last redisplay).
|
||||||
|
)
|
||||||
vindex(CURSOR)
|
vindex(CURSOR)
|
||||||
item(tt(CURSOR) (integer))(
|
item(tt(CURSOR) (integer))(
|
||||||
The offset of the cursor, within the edit buffer. This is in the range
|
The offset of the cursor, within the edit buffer. This is in the range
|
||||||
|
@ -135,9 +141,17 @@ The offset of the cursor, within the edit buffer. This is in the range
|
||||||
Attempts to move the cursor outside the buffer will result in the
|
Attempts to move the cursor outside the buffer will result in the
|
||||||
cursor being moved to the appropriate end of the buffer.
|
cursor being moved to the appropriate end of the buffer.
|
||||||
)
|
)
|
||||||
vindex(MARK)
|
vindex(HISTNO)
|
||||||
item(tt(MARK) (integer))(
|
item(tt(HISTNO) (integer))(
|
||||||
Like tt(CURSOR), but for the mark.
|
The current history number.
|
||||||
|
)
|
||||||
|
vindex(KEYS)
|
||||||
|
item(tt(KEYS) (scalar))(
|
||||||
|
The keys typed to invoke this widget, as a literal string.
|
||||||
|
)
|
||||||
|
vindex(LASTWIDGET)
|
||||||
|
item(tt(LASTWIDGET) (scalar))(
|
||||||
|
The name of the last widget that was executed.
|
||||||
)
|
)
|
||||||
vindex(LBUFFER)
|
vindex(LBUFFER)
|
||||||
item(tt(LBUFFER) (scalar))(
|
item(tt(LBUFFER) (scalar))(
|
||||||
|
@ -145,35 +159,9 @@ The part of the buffer that lies to the left of the cursor position.
|
||||||
If it is assigned to, only that part of the buffer is replaced, and the
|
If it is assigned to, only that part of the buffer is replaced, and the
|
||||||
cursor remains between the new tt($LBUFFER) and the old tt($RBUFFER).
|
cursor remains between the new tt($LBUFFER) and the old tt($RBUFFER).
|
||||||
)
|
)
|
||||||
vindex(RBUFFER)
|
vindex(MARK)
|
||||||
item(tt(RBUFFER) (scalar))(
|
item(tt(MARK) (integer))(
|
||||||
The part of the buffer that lies to the right of the cursor position.
|
Like tt(CURSOR), but for the mark.
|
||||||
If it is assigned to, only that part of the buffer is replaced, and the
|
|
||||||
cursor remains between the old tt($LBUFFER) and the new tt($RBUFFER).
|
|
||||||
)
|
|
||||||
vindex(BUFFERLINES)
|
|
||||||
item(tt(BUFFERLINES))(
|
|
||||||
The number of screen lines needed for the edit buffer currently
|
|
||||||
displayed on screen (i.e. without any changes to the preceding
|
|
||||||
parameters done after the last redisplay).
|
|
||||||
)
|
|
||||||
vindex(PREBUFFER)
|
|
||||||
item(tt(PREBUFFER) (scalar))(
|
|
||||||
In a multi-line input at the secondary prompt, this read-only parameter
|
|
||||||
contains the contents of the lines before the one the cursor is
|
|
||||||
currently in.
|
|
||||||
)
|
|
||||||
vindex(WIDGET)
|
|
||||||
item(tt(WIDGET) (scalar))(
|
|
||||||
The name of the widget currently being executed.
|
|
||||||
)
|
|
||||||
vindex(LASTWIDGET)
|
|
||||||
item(tt(LASTWIDGET) (scalar))(
|
|
||||||
The name of the last widget that was executed.
|
|
||||||
)
|
|
||||||
vindex(KEYS)
|
|
||||||
item(tt(KEYS) (scalar))(
|
|
||||||
The keys typed to invoke this widget, as a literal string.
|
|
||||||
)
|
)
|
||||||
vindex(NUMERIC)
|
vindex(NUMERIC)
|
||||||
item(tt(NUMERIC) (integer))(
|
item(tt(NUMERIC) (integer))(
|
||||||
|
@ -183,10 +171,6 @@ called with the tt(zle) builtin command will use the value
|
||||||
assigned. If it is unset inside a widget function, builtin widgets
|
assigned. If it is unset inside a widget function, builtin widgets
|
||||||
called behave as if no numeric argument was given.
|
called behave as if no numeric argument was given.
|
||||||
)
|
)
|
||||||
vindex(HISTNO)
|
|
||||||
item(tt(HISTNO) (integer))(
|
|
||||||
The current history number.
|
|
||||||
)
|
|
||||||
vindex(PENDING)
|
vindex(PENDING)
|
||||||
item(tt(PENDING) (integer))(
|
item(tt(PENDING) (integer))(
|
||||||
The number of bytes pending for input, i.e. the number of bytes which have
|
The number of bytes pending for input, i.e. the number of bytes which have
|
||||||
|
@ -194,6 +178,22 @@ already been typed and can immediately be read. On systems where the shell
|
||||||
is not able to get this information, this parameter will always have a
|
is not able to get this information, this parameter will always have a
|
||||||
value of zero.
|
value of zero.
|
||||||
)
|
)
|
||||||
|
vindex(PREBUFFER)
|
||||||
|
item(tt(PREBUFFER) (scalar))(
|
||||||
|
In a multi-line input at the secondary prompt, this read-only parameter
|
||||||
|
contains the contents of the lines before the one the cursor is
|
||||||
|
currently in.
|
||||||
|
)
|
||||||
|
vindex(RBUFFER)
|
||||||
|
item(tt(RBUFFER) (scalar))(
|
||||||
|
The part of the buffer that lies to the right of the cursor position.
|
||||||
|
If it is assigned to, only that part of the buffer is replaced, and the
|
||||||
|
cursor remains between the old tt($LBUFFER) and the new tt($RBUFFER).
|
||||||
|
)
|
||||||
|
vindex(WIDGET)
|
||||||
|
item(tt(WIDGET) (scalar))(
|
||||||
|
The name of the widget currently being executed.
|
||||||
|
)
|
||||||
enditem()
|
enditem()
|
||||||
sect(Standard Widgets)
|
sect(Standard Widgets)
|
||||||
cindex(widgets, standard)
|
cindex(widgets, standard)
|
||||||
|
|
Loading…
Reference in a new issue