forked from PsychoticNinja/ailin-nemui-irssi
75 lines
2.8 KiB
Plaintext
75 lines
2.8 KiB
Plaintext
:::{note} You are reading the help for the development version. **The current release version is Neırssi 1.3.**
|
||
:::
|
||
|
||
# scrollback
|
||
|
||
<!-- comment
|
||
|
||
Please submit changes to
|
||
- https://github.com/ailin-nemui/irssi/blob/master/docs/help/in/scrollback.in
|
||
- https://github.com/ailin-nemui/irssi/blob/master/src/fe-text/textbuffer-commands.c
|
||
|
||
|
||
endcomment -->
|
||
|
||
|
||
## Syntax ##
|
||
|
||
<div class="irssisyntax highlight"><pre style="\-\-cmdlen:16ch"><code><span class="synB">SCROLLBACK</span> <span class="synB">CLEAR</span> <span class="syn10">[<span class="syn">-all</span>]</span> <span class="syn10">[<span class="syn09"><refnum></span>]</span></code></pre></div>
|
||
|
||
|
||
<div class="irssisyntax highlight"><pre style="\-\-cmdlen:21ch"><code><span class="synB">SCROLLBACK</span> <span class="synB">LEVELCLEAR</span> <span class="syn10">[<span class="syn">-all</span>]</span> <span class="syn10">[<span class="syn">-level</span> <span class="syn09"><level></span>]</span> <span class="syn10">[<span class="syn09"><refnum></span>]</span></code></pre></div>
|
||
|
||
|
||
<div class="irssisyntax highlight"><pre style="\-\-cmdlen:15ch"><code><span class="synB">SCROLLBACK</span> <span class="synB">GOTO</span> <span class="synB05"><+|-linecount></span>|<span class="synB05"><linenum></span>|<span class="synB05"><timestamp></span></code></pre></div>
|
||
|
||
|
||
<div class="irssisyntax highlight"><pre style="\-\-cmdlen:14ch"><code><span class="synB">SCROLLBACK</span> <span class="synB">HOME</span></code></pre></div>
|
||
|
||
|
||
<div class="irssisyntax highlight"><pre style="\-\-cmdlen:13ch"><code><span class="synB">SCROLLBACK</span> <span class="synB">END</span></code></pre></div>
|
||
|
||
|
||
<div class="irssisyntax highlight"><pre style="\-\-cmdlen:-2ch"><code><span class="synB">SCROLLBACK</span> <span class="synB">REDRAW</span></code></pre></div>
|
||
|
||
|
||
|
||
## Parameters ##
|
||
|
||
|
||
| | |
|
||
| --- | --- |
|
||
| `CLEAR`: | Clears the screen and the buffer of all text. |
|
||
| `LEVELCLEAR`: | Clears the screen and the buffer of text matching the given levels. |
|
||
| `GOTO`: | Go to the given position. |
|
||
| `HOME`: | Go to the start of the buffer. |
|
||
| `END`: | Go to the end of the buffer. |
|
||
|
||
|
||
| | |
|
||
| --- | --- |
|
||
| `-all`: | Applies to all windows instead of only the active one. |
|
||
| `-level`: | The levels, separated by a comma, to match. |
|
||
|
||
The line number, timestamp to jump to or the window reference number to
|
||
clear.
|
||
|
||
## Description ##
|
||
|
||
Manipulate the text in the window to go to a to the given line number, or
|
||
clear the buffers.
|
||
|
||
The timestamp format is format is '[dd[.mm] | -<days ago>] hh:mi[:ss]'.
|
||
|
||
## Examples ##
|
||
|
||
/SCROLLBACK CLEAR
|
||
/SCROLLBACK LEVELCLEAR -level NOTICES
|
||
/SCROLLBACK GOTO 100
|
||
/SCROLLBACK HOME
|
||
/SCROLLBACK END
|
||
|
||
## See also ##
|
||
[CLEAR](/documentation/help/clear), [WINDOW](/documentation/help/window)
|
||
|