diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2010-08-11 15:43:20 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2010-08-11 15:43:20 +0200 |
commit | d59d099e82378669a2bea5aac5c9d9862438f51e (patch) | |
tree | 21d0b98a4c3e0423b18b457be53f22ef17120ffe /doc/it/autogen/user | |
parent | 6f063c95f1ed3f0f3c7071aeb4a6e2094439bc23 (diff) | |
download | weechat-d59d099e82378669a2bea5aac5c9d9862438f51e.zip |
Add new plugin "rmodifier": alter modifier strings with regular expressions (bug #26964)
Diffstat (limited to 'doc/it/autogen/user')
-rw-r--r-- | doc/it/autogen/user/rmodifier_commands.txt | 25 | ||||
-rw-r--r-- | doc/it/autogen/user/rmodifier_options.txt | 5 |
2 files changed, 30 insertions, 0 deletions
diff --git a/doc/it/autogen/user/rmodifier_commands.txt b/doc/it/autogen/user/rmodifier_commands.txt new file mode 100644 index 000000000..42ef6b896 --- /dev/null +++ b/doc/it/autogen/user/rmodifier_commands.txt @@ -0,0 +1,25 @@ +• *`/rmodifier`* `[list] | [listdefault] | [add name modifiers groups regex] | [del name|-all [name...]] | [default -yes]`:: + +........................................ + alter modifier strings with regular expressions + + list: list all rmodifiers + listdefault: list default rmodifiers + add: add a rmodifier + name: name of rmodifier + modifiers: comma separated list of modifiers + groups: action on groups found: comma separated list of groups (from 1 to 9) with optional "*" after number to hide group + regex: regular expression + del: delete a rmodifier + -all: delete all rmodifiers + default: restore default rmodifiers + + Examples: + hide everything typed after a command /password: + /rmodifier add password input_text_display 1,2* ^(/password +)(.*) + delete rmodifier "password": + /rmodifier del password + delete all rmodifiers: + /rmodifier del -all +........................................ + diff --git a/doc/it/autogen/user/rmodifier_options.txt b/doc/it/autogen/user/rmodifier_options.txt new file mode 100644 index 000000000..3206809d7 --- /dev/null +++ b/doc/it/autogen/user/rmodifier_options.txt @@ -0,0 +1,5 @@ +* *rmodifier.look.hide_char* +** descrizione: char used to hide part of a string +** tipo: stringa +** valori: qualsiasi stringa (valore predefinito: "*") + |