Age | Commit message (Collapse) | Author |
|
interface is initialized
|
|
modes on server (bug #39582)
|
|
|
|
|
|
The AND ("&&") takes precedence over the OR ("||").
Before the fix:
>> 1 || 1 && 0
== [0]
After the fix:
>> 1 || 1 && 0
== [1]
Since the "&&" has higher priority, expression is evaluated as:
"1 || (1 && 0)".
|
|
(bug #39548)
|
|
option aspell.color.suggestions
|
|
option weechat.network.gnutls_ca_file (task #12725)
|
|
(bug #39538)
|
|
|
|
(and not beyond the end)
|
|
|
|
weechat.look.hotlist_suffix (task #12730) (patch from Nils Görs)
|
|
|
|
(bug #39415)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
with a NULL value (bug #39419)
|
|
A "-dummy" option has been added too, just to prevent accidental completion with
"-quit" (which is the first option completed).
Thanks to stfn for initial patch.
|
|
|
|
|
|
|
|
Example of char causing problems: U+26C4 (snowman without snow)
|
|
|
|
dictionaries
|
|
The user's guide is better to view WeeChat default keys.
|
|
japanese)
|
|
join, network or quit is set to empty string) (bug #39218)
|
|
|
|
|
|
|
|
|
|
|
|
Enchant is enabled only if the new option for cmake (or configure) is enabled:
- for cmake: cmake -DENABLE_ENCHANT=ON
- for configure: ./configure --enable-enchant
|
|
/allchan and /allserv
|
|
(patch #8062)
|
|
|
|
|
|
buffer per nick
|