diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2013-05-03 19:15:57 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2013-05-03 19:15:57 +0200 |
commit | 0a7b708a1f600bdb8d93c95e1ede7f74b429f99d (patch) | |
tree | 2c7ad8aa7e9a4519229bcede378c4d6e5bec6689 /NEWS | |
parent | f43eb87d9d35b6232b744a619ffa6005173e27f2 (diff) | |
download | weechat-0a7b708a1f600bdb8d93c95e1ede7f74b429f99d.zip |
core: add options weechat.look.prefix_align_more_after and weechat.look.prefix_buffer_align_more_after
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 37 |
1 files changed, 36 insertions, 1 deletions
@@ -1,7 +1,7 @@ WeeChat Release Notes ===================== Sébastien Helleu <flashcode@flashtux.org> -v0.4.1-rc1, 2013-05-01 +v0.4.1-rc1, 2013-05-03 This document lists important changes for each version, that require manual @@ -40,6 +40,41 @@ Options moved from irc plugin (irc.conf) to core (weechat.conf): Types and default values for these four options remain unchanged. +Two new options to customize the truncature char (by default "`+`"): + +* 'weechat.look.prefix_align_more_after' (boolean, 'on' by default) +* 'weechat.look.prefix_buffer_align_more_after' (boolean, 'on' by default) + +When these options are enabled (default), the "`+`" is displayed after the +text, replacing the space that should be displayed there. + +When turned off, the "`+`" will replace last char of text. + +Example for a nicks "FlashCode" and "fc" with different values for options +'weechat.look.prefix_align_max', 'weechat.look.prefix_align_more_after', +'weechat.look.nick_prefix' and 'weechat.look.nick_suffix': + +---------------------------------------- + # align_max, more_after, prefix/suffix + +FlashCode │ test # 0, on + fc │ test + +FlashCod+│ test # 8, on + fc │ test + +FlashCo+ │ test # 8, off + fc │ test + +<FlashCode> │ test # 0, on, < > + <fc> │ test + +<FlashC>+│ test # 8, on, < > + <fc> │ test + +<Flash+> │ test # 8, off, < > + <fc> │ test +---------------------------------------- + After `/upgrade`, if you set new options to non-empty strings, and if old options were set to non-empty strings too, you will see double prefix/suffix on old messages, this is normal behaviour (lines displayed before `/upgrade` |