forked from PsychoticNinja/ailin-nemui-irssi
64 lines
3.5 KiB
Plaintext
64 lines
3.5 KiB
Plaintext
:::{important} You are reading the help for Irssi 1.0. **The current release version is Neırssi 1.3.**
|
||
:::
|
||
|
||
# lastlog
|
||
|
||
<!-- comment
|
||
|
||
Please submit changes to
|
||
- https://github.com/ailin-nemui/irssi/blob/master/docs/help/in/lastlog.in
|
||
- https://github.com/ailin-nemui/irssi/blob/master/src/fe-text/lastlog.c
|
||
|
||
|
||
endcomment -->
|
||
|
||
|
||
## Syntax ##
|
||
|
||
<div class="irssisyntax highlight"><pre style="\-\-cmdlen:7ch"><code><span class="synB">LASTLOG</span> <span class="syn10">[<span class="syn">-</span>]</span> <span class="syn10">[<span class="syn">-file</span> <span class="syn09"><filename></span>]</span> <span class="syn10">[<span class="syn">-window</span> <span class="syn09"><ref#|name></span>]</span> <span class="syn10">[<span class="syn">-new</span> | <span class="syn">-away</span>]</span> <span class="syn10">[<span class="syn">-</span><span class="syn09"><level></span> <span class="syn">-</span><span class="syn09"><level...></span>]</span> <span class="syn10">[<span class="syn">-clear</span>]</span> <span class="syn10">[<span class="syn">-count</span>]</span> <span class="syn10">[<span class="syn">-case</span>]</span> <span class="syn10">[<span class="syn">-date</span>]</span> <span class="syn10">[<span class="syn">-regexp</span> | <span class="syn">-word</span>]</span> <span class="syn10">[<span class="syn">-before</span> <span class="syn14">[<span class="syn13"><#></span>]</span>]</span> <span class="syn10">[<span class="syn">-after</span> <span class="syn14">[<span class="syn13"><#></span>]</span>]</span> <span class="syn10">[<span class="syn">-</span><span class="syn09"><# before+after></span>]</span> <span class="syn10">[<span class="syn09"><pattern></span>]</span> <span class="syn10">[<span class="syn09"><count></span> <span class="syn14">[<span class="syn13"><start></span>]</span>]</span></code></pre></div>
|
||
|
||
|
||
|
||
## Parameters ##
|
||
|
||
|
||
| | |
|
||
| --- | --- |
|
||
| `-`: | Doesn't print the 'Lastlog:' and 'End of Lastlog' messages. |
|
||
| `-file`: | Output the lastlog to a file instead of the active window. |
|
||
| `-window`: | Specifies the window to check. |
|
||
| `-new`: | Only displays results since the previous lastlog. |
|
||
| `-away`: | Only displays results since you previous away status. |
|
||
| `-<level>`: | Specifies the levels to check (e.g. -joins -quits -hilight) |
|
||
| `-clear`: | Removes the previous results from the active window. |
|
||
| `-count`: | Displays how many lines match. |
|
||
| `-case`: | Performs a case-sensitive matching. |
|
||
| `-date`: | Prepends each row with the message's date |
|
||
| `-regexp`: | The given text pattern is a regular expression. |
|
||
| `-word`: | The text must match full words. |
|
||
| `-force`: | Forces to display the lastlog, even if it exceeds 1000 lines. |
|
||
| `-after`: | Include this many lines of content after the match. |
|
||
| `-before`: | Include this many lines of content before the match. |
|
||
| `-<#>`: | Include this many lines of content around the match. |
|
||
| `<count>`: | Display a maximum number of `count` lines. |
|
||
| `<start>`: | Skip the last `start` lines. |
|
||
|
||
The pattern to search for and the maximum of lines to display; if no
|
||
parameter is given, the entire window buffer will be displayed.
|
||
|
||
## Description ##
|
||
|
||
Searches the active window for a pattern and displays the result.
|
||
|
||
## Examples ##
|
||
|
||
/LASTLOG holiday
|
||
/LASTLOG 'is on vacation' 10
|
||
/LASTLOG -force -file ~/mike.log 'mike'
|
||
/LASTLOG -hilight
|
||
/LASTLOG -5 searchterm
|
||
|
||
## See also ##
|
||
[HILIGHT](/documentation/help/1.0/hilight), [SCROLLBACK](/documentation/help/1.0/scrollback)
|
||
|