diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2021-05-02 12:04:17 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2021-05-11 21:06:42 +0200 |
commit | d2c5bba35654bfbf9e69e1d60d8b812b9416f7d3 (patch) | |
tree | 9e5e2f63fa3ba081c85d847aced0b2c40950346e | |
parent | 0f9640a5f33d4d0c76df75cb7a6cb07baac049f0 (diff) | |
download | weechat-d2c5bba35654bfbf9e69e1d60d8b812b9416f7d3.zip |
core: change default value of option weechat.plugin.path to "${weechat_data_dir}/plugins" (issue #1285)
-rw-r--r-- | src/core/wee-config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/wee-config.c b/src/core/wee-config.c index a9d46123d..0abbc896a 100644 --- a/src/core/wee-config.c +++ b/src/core/wee-config.c @@ -4567,7 +4567,7 @@ config_weechat_init_options () N_("path for searching plugins " "(path is evaluated, see function string_eval_path_home in " "plugin API reference)"), - NULL, 0, 0, "%h/plugins", NULL, 0, + NULL, 0, 0, "${weechat_data_dir}/plugins", NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); config_plugin_save_config_on_unload = config_file_new_option ( weechat_config_file, ptr_section, |