diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2019-08-20 21:20:33 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2019-08-20 21:20:33 +0200 |
commit | 608ec9f4834630a2a73a8d0292883cf6dd837622 (patch) | |
tree | 039291c39886fdc81fb8aa0c7c97ff03c66fda95 /doc/en | |
parent | 21dca71ee06d8fe4897f1348ce10ac483d8bcc5c (diff) | |
download | weechat-608ec9f4834630a2a73a8d0292883cf6dd837622.zip |
core: add values djb2_32 and sum_32 for option weechat.look.nick_color_hash (issue #1394)
Diffstat (limited to 'doc/en')
-rw-r--r-- | doc/en/autogen/user/weechat_options.adoc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/en/autogen/user/weechat_options.adoc b/doc/en/autogen/user/weechat_options.adoc index 644ac5d54..499418035 100644 --- a/doc/en/autogen/user/weechat_options.adoc +++ b/doc/en/autogen/user/weechat_options.adoc @@ -921,9 +921,9 @@ ** default value: `+""+` * [[option_weechat.look.nick_color_hash]] *weechat.look.nick_color_hash* -** description: pass:none[hash algorithm used to find the color for a nick: djb2 = variant of djb2 (position of letters matters: anagrams of a nick have different color), sum = sum of letters] +** description: pass:none[hash algorithm used to find the color for a nick: djb2 = variant of djb2 (position of letters matters: anagrams of a nick have different color), djb2_32 = variant of djb2 using 32-bit instead of 64-bit integer, sum = sum of letters, sum_32 = sum of letters using 32-bit instead of 64-bit integer] ** type: integer -** values: djb2, sum +** values: djb2, sum, djb2_32, sum_32 ** default value: `+djb2+` * [[option_weechat.look.nick_color_stop_chars]] *weechat.look.nick_color_stop_chars* |