summaryrefslogtreecommitdiff
path: root/doc/pl
AgeCommit message (Collapse)Author
2022-12-25core: move `/input` jump actions to command `/buffer jump`Sébastien Helleu
Actions moved to command `/buffer jump`: * `/input jump_smart` -> `/buffer jump smart` * `/input jump_previously_visited_buffer` -> `/buffer jump prev_visited` * `/input jump_next_visited_buffer` -> `/buffer jump next_visited` * `/input jump_last_buffer_displayed` -> `/buffer jump last_displayed`
2022-12-11scripts: Send null values to config section callbacksTrygve Aaberge
The callback_read and callback_create_option functions in the scripting APIs always get the value as a string, never as null. This means that if the value is null, there is no way for the script to distinguish this from an empty string for string options. This makes it impossible to properly make options with fallback values, like the irc server and server_default options, as far as I can see. All the scripting languages except Tcl use that language's equivalent for null. For JavaScript which has both null and undefined, null is used. For Tcl, the magic null string defined in commit 197a7a01e is used and the documentation is updated to describe that. I tested this with these scripts: https://gist.github.com/trygveaa/2d49c609addf9773d2ed16e15d1e3447 You can load all of those scripts and see the result with this command (assuming you have the scripts in the current directory): weechat -t -r "/filter add script * * script; /script load $(echo script_config.*)"
2022-12-10core: add whole string information in /debug unicodeSébastien Helleu
2022-12-10core: add color attributes "blink" and "dim" (half bright) (closes #1855)Sébastien Helleu
2022-11-21core: add option `unicode` in command `/debug`Sébastien Helleu
2022-11-11core: add identifier in buffer lines (closes #901)Sébastien Helleu
For buffers with formatted content, the "id" starts to 0 on each buffer and is incremented on each new line displayed (it is reset to 0 if reaching INT_MAX). For buffers with free content, the "id" is set to the same value as "y" (ie the line number, starting to 0).
2022-11-09doc/user: add missing supported format for trigger regexSébastien Helleu
2022-11-06core: update translationsSébastien Helleu
2022-11-06trigger: add regex command "y" to translate chars, set default regex command ↵Sébastien Helleu
to "s" (regex replace) (closes #1510)
2022-11-05doc: Fix typo in highlight_disable_regex option nameTrygve Aaberge
The section describes highlight_disable_regex, but the example used highlight_regex instead.
2022-10-19doc/faq: remove mention of obsolete WeeChat versionsSébastien Helleu
2022-10-15python: remove support of Python 2.xSébastien Helleu
2022-09-30trigger: add variable `${tg_hook_type}` (closes #1765)Sébastien Helleu
2022-09-29core: fix compilation with zstd < 1.4.0Sébastien Helleu
Note: zstd ≥ 0.8.1 is now required to compile WeeChat.
2022-09-29doc/user: add chapter on log file rotation/compressionSébastien Helleu
2022-09-28logger: add options to rotate and compress log files (closes #314)Sébastien Helleu
New options: - logger.file.rotation_compression_level - logger.file.rotation_compression_type - logger.file.rotation_size_max
2022-09-27api: add function string_parse_sizeSébastien Helleu
2022-09-18core: add key alt+backspace, change behavior of key ctrl+w (closes #559)Sébastien Helleu
The key ctrl+w now deletes one word until whitespace. The new key alt+backspace deletes one word (same behavior as ctrl+w in previous releases).
2022-09-17spell: allow special dict value "-" to disable spell checking on a specific ↵Sébastien Helleu
buffer (closes #1699)
2022-09-15irc: add option irc.look.display_pv_nick_changeSébastien Helleu
2022-08-15buflist: improve help on option buflist.look.enabledSébastien Helleu
2022-08-15trigger: add elapsed time for trigger execution on monitor buffer when ↵Sébastien Helleu
trigger debug is set (closes #1806)
2022-08-13irc: add options and display SETNAME command in channels and private buffers ↵Sébastien Helleu
(closes #1805) New options: - irc.color.message_setname - irc.look.smart_filter_setname
2022-08-13doc: update auto-generated filesSébastien Helleu
2022-08-07core: add option `-save` in command `/upgrade` (closes #1630)Sébastien Helleu
2022-08-03irc: mention how to remove capability in /help capSébastien Helleu
2022-07-31buflist: add variable "${hotlist_priority_number}" (integer version of ↵Sébastien Helleu
"${hotlist_priority}")
2022-07-24core: add option weechat.look.highlight_disable_regex and buffer property ↵Sébastien Helleu
"highlight_disable_regex" (closes #1798)
2022-07-22doc: use non-breaking spaces before links to notesSébastien Helleu
2022-07-22doc/scripting: add missing fields "paramN" and "num_params" in output of ↵Sébastien Helleu
"irc_message_parse" These new fields were added in version 3.4 with major improvements of the IRC message parser.
2022-07-10api: add info "uptime_current"Sébastien Helleu
This info returns time duration between the start of the current WeeChat process and now (so upgrades with /upgrade are ignored).
2022-06-28doc/quickstart: add command /autojoin and server option autojoin_dynamicSébastien Helleu
2022-06-27doc/scripting: add arrow and open external links in new tabSébastien Helleu
2022-06-26doc/quickstart: add arrow and open external links in new tabSébastien Helleu
2022-06-26doc/faq: add arrow and open external links in new tabSébastien Helleu
2022-06-26doc/user: add arrow and open external links in new tabSébastien Helleu
2022-06-26doc/user: replace TOR by TorSébastien Helleu
2022-06-25doc/user: add a chapter on supported IRCv3 extensionsSébastien Helleu
2022-06-23doc: change formatting in asciidoctor tablesSébastien Helleu
2022-06-18core: add trailing slashes in URLsSébastien Helleu
2022-06-18doc: add trailing slashes in URLsSébastien Helleu
2022-06-18doc/user: add missing server option "autojoin_dynamic"Sébastien Helleu
2022-06-18irc: update translationsSébastien Helleu
2022-06-10doc/user: fix column sizeSébastien Helleu
2022-06-07doc/user: add chapter on custom bar itemsSébastien Helleu
2022-06-06doc/faq: mention command /autojoin to edit the "autojoin" server optionSébastien Helleu
2022-05-30doc/user: fix links to commandsSébastien Helleu
2022-05-27core: update translationsSébastien Helleu
2022-05-11core: allow to remove multiple filters at once with command /filter delSébastien Helleu
2022-04-29doc/faq: rename option autojoin_record to autojoin_dynamicSébastien Helleu