diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2019-01-27 14:59:22 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2019-02-19 21:15:56 +0100 |
commit | 57aa9e060ef7214f8b822fa32b40bb728482adce (patch) | |
tree | 5721144252be73832b937bade4520b3de7e735bb /doc/en/weechat_faq.en.adoc | |
parent | e8159298ad4b607e8daee89406de2434ee9c22e4 (diff) | |
download | weechat-57aa9e060ef7214f8b822fa32b40bb728482adce.zip |
spell: rename "aspell" plugin to "spell" (issue #1299)
The following things have been renamed:
- file aspell.conf -> spell.conf
- options aspell.* -> spell.*
- bar item aspell_dict -> spell_dict
- bar item and local variable aspell_suggest -> spell_suggest
- info aspell_dict -> spell_dict
Diffstat (limited to 'doc/en/weechat_faq.en.adoc')
-rw-r--r-- | doc/en/weechat_faq.en.adoc | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/doc/en/weechat_faq.en.adoc b/doc/en/weechat_faq.en.adoc index 4a392dcd1..7e9cd3bcb 100644 --- a/doc/en/weechat_faq.en.adoc +++ b/doc/en/weechat_faq.en.adoc @@ -960,15 +960,19 @@ $ cd ~/.weechat/script $ curl -O https://weechat.org/files/plugins.xml.gz ---- -[[aspell_dictionaries]] +[[spell_dictionaries]] === I installed aspell dictionaries on my system, how can I use them without restarting WeeChat? -You have to reload the aspell plugin: +You have to reload the spell plugin: ---- -/plugin reload aspell +/plugin reload spell ---- +[NOTE] +With WeeChat ≤ 2.3, the "spell" plugin was named "aspell", so the command is: +`/plugin reload aspell`. + [[settings]] == Settings @@ -998,8 +1002,8 @@ You can try following tips to consume less memory: * Use the latest stable version (it is supposed to have less memory leaks than older versions). -* Do not load some plugins if you don't use them, for example: aspell, buflist, - fifo, logger, perl, python, ruby, lua, tcl, guile, javascript, php, +* Do not load some plugins if you don't use them, for example: buflist, + fifo, logger, perl, python, ruby, lua, tcl, guile, javascript, php, spell, xfer (used for DCC). See `/help weechat.plugin.autoload`. * Load only scripts that you really need. * Do not load certificates if SSL is *NOT* used: set empty string in option @@ -1017,7 +1021,7 @@ You can follow same tips as for <<memory_usage,memory>>, and these ones: * Remove display of seconds in status bar time: `/set weechat.look.item_time_format "%H:%M"` (this is the default value). * Disable real time check of misspelled words in command line (if you enabled it): - `/set aspell.check.real_time off`. + `/set spell.check.real_time off`. * Set the _TZ_ variable (for example: `export TZ="Europe/Paris"`), to prevent frequent access to file _/etc/localtime_. |