Skip to content
Snippets Groups Projects
Commit 2d89fde7 authored by Sven Mäder's avatar Sven Mäder :speech_balloon:
Browse files

Add weechat filters

parent 096aee17
No related branches found
No related tags found
No related merge requests found
......@@ -161,3 +161,36 @@ Save all options:
```
/save
```
### Filter
Enable smart filter for `join/part/quit` messages on a specific channel (example: `#openldap`):
```
/filter add irc_smart_openldap irc.freenode.#openldap irc_smart_filter *
```
You can hide only join or part/quit with following options:
```
/set irc.look.smart_filter_join on
/set irc.look.smart_filter_quit on
```
You can setup delay (in minutes), only filter if a nick did not speak during last 5 minutes:
```
/set irc.look.smart_filter_delay 5
```
You can use regex to filter any message. For example to filter all server messages for connecting/exiting clients:
```
/filter add irc_filter_connect_disconnect * * \*\*\* Client (connect|exit)ing:
```
Get help:
```
/help filter
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment