diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2018-03-30 05:25:16 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2018-03-31 09:18:26 +0200 |
commit | 9af0c04b883e6d13057aead956e1893508bce2a0 (patch) | |
tree | 347a141c529579468dc3035d8898b636cd8dd432 /doc/en/weechat_quickstart.en.adoc | |
parent | b143bc68299129e7d38999a5a738a8e721f2d94e (diff) | |
download | weechat-9af0c04b883e6d13057aead956e1893508bce2a0.zip |
doc: add fset plugin in quickstart guide
Diffstat (limited to 'doc/en/weechat_quickstart.en.adoc')
-rw-r--r-- | doc/en/weechat_quickstart.en.adoc | 42 |
1 files changed, 18 insertions, 24 deletions
diff --git a/doc/en/weechat_quickstart.en.adoc b/doc/en/weechat_quickstart.en.adoc index 9a35aaa2e..a1e9a0d4a 100644 --- a/doc/en/weechat_quickstart.en.adoc +++ b/doc/en/weechat_quickstart.en.adoc @@ -47,44 +47,38 @@ option name). WeeChat immediately uses the new value (you *never* need to restart WeeChat after changes to configuration). -You can use `/set` option with partial name and wildcard "*" at the beginning -or end to display all options containing letters. -For example: - -* Display all options (WeeChat and plugins): +All settings are saved when WeeChat ends (or with `/save` command to force +a write of the options). ----- -/set ----- +[IMPORTANT] +It is *not recommended* to edit configuration files by hand because WeeChat +may write them at any time (for example on `/quit`) and after any change +you must run the command `/reload` (with the risk of losing other changes +that were not yet saved with `/save`). + +You can use the command `/set`, which checks the value and applies immediately +the changes. -* Display WeeChat options: +Help is available for options: ---- -/set weechat.* +/help config.section.option ---- -* Display IRC plugin options: +The plugin _fset_ allows you to easily browse options and change them. + +For example to display WeeChat options: ---- -/set irc.* +/fset weechat.* ---- -You can display help for an option with `/help`, for example: +IRC options: ---- -/help weechat.look.highlight +/fset irc.* ---- -All settings are saved when WeeChat ends (or with `/save` command to force -a write of the options). - -[IMPORTANT] -It is *not recommended* to edit configuration files by hand because WeeChat -may write them at any time (for example on `/quit`) and after any change -you must run the command `/reload` (with the risk of losing other changes -that were not yet saved with `/save`). + -You can use the command `/set`, which checks the value and applies immediately -the changes. +For more information about `/fset` command and keys, see `/help fset`. [[core_vs_plugins]] == Core vs plugins |