diff options
author | tribut <felix@tribut.de> | 2014-07-24 00:51:07 -0300 |
---|---|---|
committer | dequis <dx@dxzone.com.ar> | 2014-07-24 00:51:07 -0300 |
commit | f93fd2db1e8a4c2671ccae3cb9311ff47d4ba7e0 (patch) | |
tree | cc22f3ddf93aaa0055a108e1976294f7c3bb1216 /doc | |
parent | 632627e1ead19fc7dc07effe441b2d543a675229 (diff) |
Allow filtering of blist output
Add an (optional) second parameter to blist. If present, it is treated
as regex and used to filter the result list.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/user-guide/commands.xml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/user-guide/commands.xml b/doc/user-guide/commands.xml index 45a6674f..e7d56ba1 100644 --- a/doc/user-guide/commands.xml +++ b/doc/user-guide/commands.xml @@ -1789,13 +1789,17 @@ </bitlbee-command> <bitlbee-command name="blist"> - <syntax>blist [all|online|offline|away]</syntax> + <syntax>blist [all|online|offline|away] [<pattern>]</syntax> <short-description>List all the buddies in the current channel</short-description> <description> <para> You can get a more readable buddy list using the <emphasis>blist</emphasis> command. If you want a complete list (including the offline users) you can use the <emphasis>all</emphasis> argument. </para> + + <para> + A perl-compatible regular expression can be supplied as <emphasis>pattern</emphasis> to filter the results (case-insensitive). + </para> </description> </bitlbee-command> |