summaryrefslogtreecommitdiff
path: root/src/core/wee-config.c
AgeCommit message (Collapse)Author
2019-06-15api: add argument "strip_items" in function string_splitSébastien Helleu
2019-04-13core: fix /help weechat.look.buffer_time_sameSébastien Helleu
2019-04-13core: add option weechat.look.prefix_same_nick_middle (closes #930, closes #931)Adrian Bjugård
2019-04-13core: add option weechat.look.buffer_time_same (closes #1127)Simmo Saan
2019-03-10core: replace argument "keep_eol" by "flags" in function string_split ↵Sébastien Helleu
(closes #1322)
2019-02-21gui: only refilter affected buffers on filter change (closes #1309)Simmo Saan
2019-02-03Fix typo "part or words" -> "part of words"arza
2019-01-26core: do not automatically add a space when completing "nick:" at the ↵Sébastien Helleu
beginning of command line The space can be added in option weechat.completion.nick_completer (this is now the default value of the option): /set weechat.completion.nick_completer ": "
2019-01-01core: update copyright datesSébastien Helleu
2018-11-29core: use https for links to GNU GPL licenseSébastien Helleu
2018-11-12core: improve help on option weechat.look.nick_color_stop_chars (closes #1268)Sébastien Helleu
2018-08-12core: fix check of tags in linesSébastien Helleu
All changes: - fix check of tags in lines: check lines without tags, fix check of tags with negation ("!tag") - add string functions string_split_tags and string_free_split_tags - add tests on function gui_line_match_tags
2018-06-14core: change default value of option weechat.look.hotlist_add_conditions ↵Sébastien Helleu
(closes #1206) Now if there are at least one relay client connected via weechat protocol, the buffer is always added to the hotlist.
2018-04-16core: do not set terminal title by default (option ↵Sébastien Helleu
weechat.look.window_title) (closes #1182)
2018-03-31core: fix help on option weechat.look.hotlist_count_maxSébastien Helleu
2018-03-31core: improve help on option weechat.look.hotlist_count_maxSébastien Helleu
2018-03-19core: improve help of option weechat.completion.partial_completion_alertSébastien Helleu
2018-01-14core: reinitialize config file pointer to NULL after an error on section ↵Sébastien Helleu
creation
2018-01-05core: update copyright datesSébastien Helleu
2017-12-10core: add link to API doc in /help ↵Sébastien Helleu
weechat.completion.partial_completion_templates
2017-12-09core: add option weechat.completion.partial_completion_templatesSébastien Helleu
This option is used to force partial completion on specific templates (for now only "config_options").
2017-10-14core: add option weechat.look.save_config_with_fsync (closes #1083)Sébastien Helleu
This makes the save of all configuration files about 20 to 200x slower (according to the storage device speed); so this is disabled by default.
2017-09-23core, plugins: check return code of strftime functionSébastien Helleu
2017-08-21core: add note about bar item "input_paste" in /help ↵Sébastien Helleu
weechat.look.paste_max_lines (closes #1054)
2017-07-08core: call the config hook when options are removedSébastien Helleu
2017-06-10core, plugins: fix conditions to insert elements in linked listsSébastien Helleu
This removes scan-build warnings about dereference of last_xxx null pointers.
2017-06-01core: remove config_look_hotlist_add_buffer_if_away completelyMiroslav Koskar
2017-05-06core: add option weechat.completion.nick_case_sensitive (closes #981)Sébastien Helleu
2017-01-01core: update copyright datesSébastien Helleu
2016-12-20core: fix typo in /help weechat.look.align_multiline_wordsSébastien Helleu
2016-12-17core: improve /help weechat.look.align_multiline_wordsSébastien Helleu
2016-12-17Merge remote-tracking branch 'origin/pr/802'Sébastien Helleu
2016-11-25core: add more info in /help weechat.color.chat_nickSébastien Helleu
2016-09-20core: add option weechat.look.align_multiline_wordsarza
2016-09-03core: evaluate content of option "weechat.look.item_time_format" (issue #791)Sébastien Helleu
2016-08-16core: add optional argument "lowest", "highest" or level mask in command ↵Sébastien Helleu
/input hotlist_clear
2016-07-09core: replace some single quotes by double quotes in help of optionsSébastien Helleu
2016-04-06core: set default value "djb2" for option weechat.look.nick_color_hashSébastien Helleu
2016-04-05core: move nick coloring from irc plugin to core (closes #262)Sébastien Helleu
Options moved from irc.conf to weechat.conf: * "irc.look.nick_color_force" moved to "weechat.look.nick_color_force" * "irc.look.nick_color_hash" moved to "weechat.look.nick_color_hash" * "irc.look.nick_color_stop_chars" moved to "weechat.look.nick_color_stop_chars" New info (for API function "info_get"): * "nick_color" (replaces "irc_nick_color") * "nick_color_name" (replaced "irc_nick_color_name") Info "irc_nick_color" and "irc_nick_color_name" are now deprecated. And a bug has been fixed in nick coloring: stop chars are removed before looking at a forced color.
2016-03-21core: add pointer in some callbacks (closes #406)Sébastien Helleu
This pointer is the first argument received by callbacks, and the existing argument "data" is now automatically freed by WeeChat when the object containing the callback is removed. With this new pointer, the linked list of callbacks in scripts has been removed. This will improve speed of scripts (using a lot of hooks), reduce memory used by scripts and reduce time to unload scripts. Following functions are affected in the C API: * exec_on_files * config_new * config_new_section * config_new_option * hook_command * hook_command_run * hook_timer * hook_fd * hook_process * hook_process_hashtable * hook_connect * hook_print * hook_signal * hook_hsignal * hook_config * hook_completion * hook_modifier * hook_info * hook_info_hashtable * hook_infolist * hook_hdata * hook_focus * unhook_all_plugin * buffer_new * bar_item_new * upgrade_new * upgrade_read
2016-02-15core: move irc bar item "away" and two options to core (closes #692)Sébastien Helleu
Options moved: * "irc.look.item_away_message" --> "weechat.look.item_away_message" * "irc.color.item_away" --> "weechat.color.item_away".
2016-01-06core: remove unused option weechat.color.nicklist_offlineSimmo Saan
Added in c1c1005b364d28409339f46b5233bcb0f2f86ed7.
2016-01-01core: update copyright datesSébastien Helleu
2015-12-24core: add a parent name in options (closes #629)Sébastien Helleu
Inherited values are now displayed in /set output when the value is null, if a parent option name is defined in option. New option: weechat.color.chat_value_null
2015-10-03core: add option weechat.look.paste_auto_add_newline (closes #543)Sébastien Helleu
2015-07-26core: fix typo in /help weechat.look.key_grab_delaySébastien Helleu
2015-07-26core: add option weechat.look.key_grab_delay to set the default delay when ↵Sébastien Helleu
grabbing a key with alt-k
2015-07-14core: add option weechat.look.confirm_upgrade (closes #463)Sébastien Helleu
2015-06-04core: replace "create" by "add" in messages and docs for IRC servers and proxiesSébastien Helleu
2015-04-19core: add options weechat.look.quote_{nick_prefix|nick_suffix|time_format} ↵Sébastien Helleu
to customize quoted messages in cursor mode (closes #403)