summaryrefslogtreecommitdiff
path: root/src/plugins/buflist
AgeCommit message (Collapse)Author
2023-08-20buflist: add list buffer in /help buflist and /help buflist.format.indentSébastien Helleu
2023-08-20buflist: indent the /list bufferSébastien Helleu
2023-07-04buflist: increase max number of buflist items from 3 to 5 (closes #1703)Sébastien Helleu
2023-05-13core: add quotes around paths in CMake files (closes #29)Sébastien Helleu
2023-04-26buflist: change default background color of current buffer (issue #1920)Sébastien Helleu
Default value changed: - buflist.format.buffer_current: "${color:,blue}${format_buffer}" -> "${color:,17}${format_buffer}"
2023-04-22buflist: update example in /help buflist.look.sortSébastien Helleu
2023-04-21buflist: add example to sort on hotlist activity in /help buflist.look.sortSébastien Helleu
2023-04-01core, plugins: set options to NULL by default, refactor config init functionsSébastien Helleu
2023-03-16buflist: do not display keys added in default context on first loadSébastien Helleu
Keys added in mouse context were already hidden, so it makes sense to not display keys in default context as well. These keys added by the default plugins are documented anyway.
2023-03-16core: use new key name in command `/key` and configuration fileSébastien Helleu
Legacy keys are automatically converted to new names when loading configuration file `weechat.conf`. Examples: "ctrl-I" => "tab" "meta2-1;3A" => "meta-up" "meta2-Z" => "shift-tab" "meta-wmeta-meta2-A" => "meta-w,meta-up" "ctrl-Cb" => "ctrl-c,b"
2023-01-29core: force ctrl keys to lower case when they are added (closes #1875)Sébastien Helleu
2023-01-29api: readjust string size in function string_dyn_free when string is not ↵Sébastien Helleu
freed (issue #1875) This frees some allocated memory if size_alloc was greater than size in the dynamic string.
2023-01-28core, plugins: make commands, hook command_run, completions and aliases case ↵Sébastien Helleu
sensitive (issue #1872)
2023-01-28plugins: set priority in calls to weechat_config_new (issue #1872)Sébastien Helleu
2023-01-08core: remove build with autotoolsSébastien Helleu
CMake is now the only way to build WeeChat.
2023-01-01core: update copyright datesSébastien Helleu
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-08-15buflist: improve help on option buflist.look.enabledSébastien Helleu
2022-07-31buflist: add variable "${hotlist_priority_number}" (integer version of ↵Sébastien Helleu
"${hotlist_priority}")
2022-04-16buflist: fix memory leak when reading config and changing option ↵Sébastien Helleu
buflist.look.sort
2022-01-17core: update copyright datesSébastien Helleu
2021-07-04typing: add typing pluginSébastien Helleu
2021-05-25core, buflist, irc, relay: replace freenode by libera in commentsSébastien Helleu
2021-05-16buflist, irc, xfer: do not translate "cleartext" in buffer local variable ↵Sébastien Helleu
"tls_version" (issue #1622) The text "cleartext" is translated for display only: directly with gettext in IRC plugin and with "${translate:${tls_version}}" in the buflist evaluated format.
2021-05-16core: update translations (issue #1622)Sébastien Helleu
2021-05-16irc, buflist: add bar item "tls_version" with options for colors, add ↵Andrew Potter
buflist format "${format_tls_version}" (issue #1622)
2021-03-21buflist: improve help on option buflist.look.sortSébastien Helleu
2021-03-21buflist: Fix wrong pointers being used in hdata_compareTrygve Aaberge
This used pointer1 and pointer2 which are pointers to the buffers, but it should use ptr_hotlist1 and ptr_hotlist1 which are pointers to the hotlists it is trying to compare.
2021-03-14buflist: always add buflist bar when plugin is loaded, hide bar by default ↵Sébastien Helleu
if buflist is disabled (issue #1618)
2021-03-14buflist: add buflist bar on configuration reload (issue #1618)Sébastien Helleu
2021-02-09buflist: add option buflist.look.use_items to speed up display of buflist ↵Sébastien Helleu
(closes #1613)
2021-01-02core: update copyright datesSébastien Helleu
2020-08-23api: add argument "bytes" in function string_dyn_concatSébastien Helleu
2020-06-21core: add bar option "color_bg_inactive" (issue #732)Sébastien Helleu
2020-06-10buflist: add "window" pointer in bar item evaluation only if it's not NULL ↵Sébastien Helleu
(if bar type is "window")
2020-04-24buflist: add default key alt-shift-B to toggle buflistSébastien Helleu
2020-04-24buflist: add options enable/disable/toggle in command /buflistSébastien Helleu
2020-04-06buflist: evaluate option buflist.look.sort (closes #1465)Sébastien Helleu
The evaluation allows to use different sort for the bar items, for example with such value: ${if:${bar_item.name}==buflist?number:short_name} This sorts by number on the first bar item and by short name on the two other bar items.
2020-01-04core: update copyright datesSébastien Helleu
2019-12-26buflist: add pointer "window" in bar item evaluationSébastien Helleu
2019-10-23plugins: sort options added in configuration sectionsSébastien Helleu
2019-10-01core: fix style in CMake filesSébastien Helleu
2019-09-17buflist: fix extra spaces between buffers when conditions are used to hide ↵Sébastien Helleu
buffers (closes #1403) This is a regression introduced in version 2.6 by commit bf21ca072d5250b1196e62db61f3ba675ee89b52.
2019-08-17buflist: use extra variables in option buflist.look.display_conditions ↵Sébastien Helleu
(closes #1393)
2019-08-17Revert "buflist: mention variables available for option ↵Sébastien Helleu
buflist.look.display_conditions in its help and in /help buflist (closes #1393)" This reverts commit 39e5b0574cff8ade50ff6ec95feda57b1c331b4e.
2019-08-17buflist: mention variables available for option ↵Sébastien Helleu
buflist.look.display_conditions in its help and in /help buflist (closes #1393)
2019-07-13buflist: use existing variable buflist_hdata_buffer to check buffer pointers ↵Sébastien Helleu
in infolist "buflist"
2019-07-11core: update translations (issue #1375)Sébastien Helleu
2019-07-11buflist: check validity of buffer pointers in info "buflist" (issue #1375)Sébastien Helleu
2019-07-11buflist: add infolist "buflist" (issue #1375)Simmo Saan