forked from PsychoticNinja/ailin-nemui-irssi
61 lines
2.7 KiB
Plaintext
61 lines
2.7 KiB
Plaintext
:::{important} You are reading the help for Irssi 1.0. **The current release version is Neırssi 1.3.**
|
||
:::
|
||
|
||
# window/split window creation
|
||
|
||
<!-- comment
|
||
|
||
Please submit changes to
|
||
- https://github.com/ailin-nemui/irssi/blob/master/docs/help/in/window.in
|
||
- https://github.com/ailin-nemui/irssi/blob/master/src/fe-common/core/fe-log.c
|
||
- https://github.com/ailin-nemui/irssi/blob/master/src/fe-common/core/window-commands.c
|
||
- https://github.com/ailin-nemui/irssi/blob/master/src/fe-text/mainwindows.c
|
||
|
||
|
||
endcomment -->
|
||
|
||
|
||
## Syntax ##
|
||
|
||
<div class="irssisyntax highlight"><pre style="\-\-cmdlen:10ch"><code><span class="synB">WINDOW</span> <span class="synB">NEW</span> <span class="syn10">[<span class="syn">HIDDEN</span>|<span class="syn">SPLIT</span>]</span></code></pre></div>
|
||
|
||
|
||
<div class="irssisyntax highlight"><pre style="\-\-cmdlen:12ch"><code><span class="synB">WINDOW</span> <span class="synB">CLOSE</span> <span class="syn10">[<span class="syn09"><first></span> <span class="syn14">[<span class="syn13"><last></span>]</span>]</span></code></pre></div>
|
||
|
||
|
||
<div class="irssisyntax highlight"><pre style="\-\-cmdlen:10ch"><code><span class="synB">WINDOW</span> <span class="synB">LIST</span></code></pre></div>
|
||
|
||
|
||
<div class="irssisyntax highlight"><pre style="\-\-cmdlen:11ch"><code><span class="synB">WINDOW</span> <span class="synB">HIDE</span> <span class="syn10">[<span class="syn09"><number></span>|<span class="syn09"><name></span>]</span></code></pre></div>
|
||
|
||
|
||
<div class="irssisyntax highlight"><pre style="\-\-cmdlen:11ch"><code><span class="synB">WINDOW</span> <span class="synB">SHOW</span> <span class="synB05"><number></span>|<span class="synB05"><name></span></code></pre></div>
|
||
|
||
|
||
|
||
## Parameters ##
|
||
|
||
|
||
| | |
|
||
| --- | --- |
|
||
| `NEW`: | Creates a new hidden or split window. |
|
||
| `CLOSE`: | Closes the current window, the specified one or all windows in the given range. |
|
||
| `LIST`: | List all the windows. |
|
||
| `HIDE`: | Hides the current split window, or the split window specified by number or item name. |
|
||
| `SHOW`: | Show the window specified by number or item name as a new split windows. It is made sticky when autostick_split_windows is turned on. |
|
||
|
||
Add the required arguments for the given command. Without arguments, the details (size, immortality, levels, server, name and sticky group) of the currently active window are displayed. If used with a number as argument, same as WINDOW REFNUM.
|
||
|
||
## Description ##
|
||
|
||
Manipulates the window layout and positioning attributes.
|
||
|
||
## Examples ##
|
||
|
||
/WINDOW CLOSE
|
||
/WINDOW NEW HIDDEN
|
||
|
||
## See also ##
|
||
[JOIN](/documentation/help/1.0/join), [LEVELS](/documentation/help/1.0/levels), [LOG](/documentation/help/1.0/log), [QUERY](/documentation/help/1.0/query)
|
||
|