1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-24 20:06:38 +02:00

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
This commit is contained in:
Sébastien Helleu
2019-01-27 14:59:22 +01:00
parent e8159298ad
commit 57aa9e060e
96 changed files with 2070 additions and 2011 deletions
+1 -1
View File
@@ -52,7 +52,6 @@ TEST(Plugins, Loaded)
/* check that all plugins are properly loaded */
CHECK(hdata_search (hdata, plugins, "${plugin.name} == alias", 1));
CHECK(hdata_search (hdata, plugins, "${plugin.name} == aspell", 1));
CHECK(hdata_search (hdata, plugins, "${plugin.name} == buflist", 1));
CHECK(hdata_search (hdata, plugins, "${plugin.name} == charset", 1));
CHECK(hdata_search (hdata, plugins, "${plugin.name} == exec", 1));
@@ -69,6 +68,7 @@ TEST(Plugins, Loaded)
CHECK(hdata_search (hdata, plugins, "${plugin.name} == relay", 1));
CHECK(hdata_search (hdata, plugins, "${plugin.name} == ruby", 1));
CHECK(hdata_search (hdata, plugins, "${plugin.name} == script", 1));
CHECK(hdata_search (hdata, plugins, "${plugin.name} == spell", 1));
CHECK(hdata_search (hdata, plugins, "${plugin.name} == tcl", 1));
CHECK(hdata_search (hdata, plugins, "${plugin.name} == trigger", 1));
CHECK(hdata_search (hdata, plugins, "${plugin.name} == xfer", 1));