summaryrefslogtreecommitdiff
path: root/src/plugins/fset
AgeCommit message (Collapse)Author
2023-10-17fset: format and translate command line by line (issue #2005)Sébastien Helleu
2023-09-05core: add note for translators on command arguments (issue #2005)Sébastien Helleu
Only text between angle brackets (eg: "<name>") must be translated.
2023-08-24fset: add local key bindings during the buffer creationSébastien Helleu
This allows the user to bind or unbind keys by setting options "weechat.buffer.fset.fset.key_bind_*" and "weechat.buffer.fset.fset.key_unbind_*".
2023-08-24fset: fix wrong value type in hashtable used for fset buffer propertiesSébastien Helleu
2023-08-12fset: remove redirection to /help fset.look.sort in /help fsetSébastien Helleu
2023-08-12irc: add buffer for /list reply (closes #1972)Sébastien Helleu
New options: - irc.color.list_buffer_line_selected - irc.color.list_buffer_line_selected_bg - irc.look.list_buffer_sort - irc.look.list_buffer_scroll_horizontal - irc.look.new_list_position - irc.look.list_buffer_topic_strip_colors
2023-08-08fset: fix the colon in help bar being included in description colorNathaniel Evan
2023-08-08fset: fix fset.color.help_description not applyingNathaniel Evan
2023-07-14fset: fix description of function fset_buffer_check_line_outside_windowSébastien Helleu
2023-07-08fset: add missing format in calls to snprintfSébastien Helleu
2023-07-08fset: add variable `allowed_values` in options, add two color optionsSébastien Helleu
New options: - fset.color.allowed_values - fset.color.allowed_values_selected
2023-07-08fset: add missing enum in /help fsetSébastien Helleu
2023-07-08fset: fix mouse actions when second format is usedSébastien Helleu
The mouse actions now properly handle the case where options are displayed on multiple lines to calculate the option index in list.
2023-07-08fset: allow long type name in type filterSébastien Helleu
2023-07-08core: add option type "enum" (closes #1973)Sébastien Helleu
The type "enum" replaces type "integer" when used with string values. For compatibility, any option created with type "integer" and string values is automatically created to "enum" on creation, with no error.
2023-07-06fset: remove extra spaces between min and max values when second format is usedSébastien Helleu
2023-05-30fset: reset color immediately after the color name (issue #1920)Sébastien Helleu
2023-05-20fset: create buffer with function buffer_new_props (issue #1942)Sébastien Helleu
With this function, buffer properties are set when the buffer is created and can be read immediately by other plugins/scripts, for example in a callback of signal "buffer_opened".
2023-05-13core: add quotes around paths in CMake files (closes #29)Sébastien Helleu
2023-04-27fset: change default value of option fset.color.value_selected from 80 to ↵Sébastien Helleu
159 (issue #1920)
2023-04-26fset: enable option fset.look.use_color_value by default (issue #1920)Sébastien Helleu
2023-04-26fset: add options fset.color.color_name and fset.color.color_name_selected ↵Sébastien Helleu
(issue #1920)
2023-04-26fset: change default colors (issue #1920)Sébastien Helleu
Default values changed: - fset.color.description: default -> 242 - fset.color.description_selected: white -> default - fset.color.line_marked_bg1: default -> 17 - fset.color.line_marked_bg2: default -> 17 - fset.color.line_selected_bg1: blue -> 24 - fset.color.line_selected_bg2: red -> 24 - fset.color.name_changed: brown -> 185 - fset.color.type: green -> 138 - fset.color.type_selected: lightgreen -> 216 - fset.color.value: cyan -> 38 - fset.color.value_changed: brown -> 185 - fset.color.value_selected: lightcyan -> 80 - fset.format.option2: ${color:darkgray} -> ${color:244}
2023-04-01core, plugins: set options to NULL by default, refactor config init functionsSébastien Helleu
2023-03-16fset: hook command /keySébastien Helleu
When command /key is called without arguments, and if fset plugin is loaded, fset displays all key options (filter: `weechat.key*`).
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-03-16fset: remove scroll to top of fset buffer when options are added or removed ↵Sébastien Helleu
(closes #1892)
2023-01-29core: force ctrl keys to lower case when they are added (closes #1875)Sébastien Helleu
2023-01-28core, plugins: replace calls to string_str(n)cmp by str(n)cmp (issue #1872)Sébastien Helleu
2023-01-28core, plugins: check that string parameters are not NULL in search functions ↵Sébastien Helleu
(issue #1872)
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-07-20api: add arguments "index_start" and "index_end" in function ↵Sébastien Helleu
string_rebuild_split_string
2022-07-20api: rename function string_build_with_split_string to ↵Sébastien Helleu
string_rebuild_split_string
2022-01-17core: update copyright datesSébastien Helleu
2021-03-14fset: add fset bar on configuration reload (issue #1618)Sébastien Helleu
2021-02-27fset: fix description of function fset_bar_item_fset_cbSébastien Helleu
2021-01-02core: update copyright datesSébastien Helleu
2020-08-23api: add argument "bytes" in function string_dyn_concatSébastien Helleu
2020-08-20fset: fix refresh of option values in fset buffer (issue #1553)Sébastien Helleu
2020-08-09fset: add option fset.look.auto_refresh (closes #1553)Sébastien Helleu
2020-06-21core: add bar option "color_bg_inactive" (issue #732)Sébastien Helleu
2020-05-08core: rename functions hook_completion_{get_string|list_add} to ↵Sébastien Helleu
completion_{get_string|list_add} Old functions are kept for compatibility reasons.
2020-04-02fset: fix help on options fset.format.option1 and fset.format.option2Sébastien Helleu
2020-01-04core: update copyright datesSébastien Helleu
2019-10-30fset: add comment on filter by evaluated expressionSébastien Helleu
2019-10-30fset: fix filter variable used to match filter stringSébastien Helleu
2019-10-23plugins: sort options added in configuration sectionsSébastien Helleu