Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-04-19 | core: sort config options by name in sources | Sébastien Helleu | |
2015-04-11 | core: add options weechat.look.word_chars_{highlight|input} (closes #55, ↵ | Sébastien Helleu | |
task #9459) | |||
2015-01-01 | core: update copyright dates | Sébastien Helleu | |
2014-11-09 | core: add option weechat.completion.command_inline (task #12491) | Sébastien Helleu | |
2014-11-06 | core: update translations | Sébastien Helleu | |
2014-11-06 | core: add bar item "mouse_status", new options ↵ | Nils Görs | |
weechat.look.item_mouse_status and weechat.color.status_mouse | |||
2014-10-26 | core: add note about option weechat.look.color_nick_offline in help of color ↵ | Sébastien Helleu | |
options for offline nick | |||
2014-08-23 | core: fix typo: unambigous -> unambiguous | Sébastien Helleu | |
2014-08-23 | core: allow incomplete commands if unambiguous (task #5419) | Sébastien Helleu | |
2014-07-12 | core: add option weechat.color.status_nicklist_count (closes #109, closes #110) | Sébastien Helleu | |
2014-06-11 | core: set default value "merged" for option weechat.look.hotlist_remove | Sébastien Helleu | |
2014-06-06 | core: add option weechat.look.hotlist_remove (closes #99) | Sébastien Helleu | |
2014-04-12 | api: allow wildcard "*" inside the mask in function string_match | Sébastien Helleu | |
2014-03-07 | core: set option weechat.look.buffer_search_where to prefix_message by default | Sebastien Helleu | |
2014-03-06 | core: add option weechat.look.hotlist_add_conditions, remove option ↵ | Sebastien Helleu | |
weechat.look.hotlist_add_buffer_if_away | |||
2014-02-21 | Merge branch 'trigger' | Sebastien Helleu | |
2014-02-16 | core: add bare display mode (for easy text selection and click on URLs) | Sebastien Helleu | |
New key: alt+"!", to swith to bare display (same key to come back to standard display). New options: - weechat.look.bare_display_exit_on_input (default: on): by default any changes in input will return to standard display - weechat.look.bare_display_time_format (default: "%H:%M"): the format of time used in bare display. | |||
2014-02-10 | api: add integer return code for functions hook_{signal|hsignal}_send | Sebastien Helleu | |
2014-02-09 | trigger: add trigger plugin | Sebastien Helleu | |
2014-02-09 | core: display a warning in case of inconsistency between the options ↵ | Sebastien Helleu | |
weechat.look.save_{config|layout}_on_exit | |||
2014-02-09 | core: add more info in /help weechat.look.hotlist_sort | Sebastien Helleu | |
2014-01-22 | core: revert the rename of option weechat.look.save_layout_on_exit | Sebastien Helleu | |
2014-01-21 | core: rename option weechat.look.save_layout_on_exit to ↵ | Sebastien Helleu | |
weechat.look.store_layout_on_exit, replace "save" by "store" for layouts | |||
2014-01-16 | core: set max value for option weechat.look.hotlist_names_count to ↵ | Sebastien Helleu | |
GUI_BUFFERS_MAX (10000) | |||
2014-01-15 | core: add option weechat.look.tab_width | Sebastien Helleu | |
2014-01-13 | core: fix typo in /help weechat.look.highlight_regex | Sebastien Helleu | |
2014-01-09 | core: add "POSIX extended" in description of options/commands/functions ↵ | Sebastien Helleu | |
using regular expressions | |||
2014-01-05 | core: fix compilation warnings on OpenBSD | Sebastien Helleu | |
On OpenBSD, the variable "tv_sec" in struct timeval has type "long" (type "time_t" under Linux). So we need to copy this value to a temporary variable before using its pointer with function localtime(). | |||
2014-01-01 | core: update copyright dates | Sebastien Helleu | |
2013-12-23 | core: replace darkgray color as default value of options | Sebastien Helleu | |
New default value is now used for these options: - weechat.color.chat_inactive_buffer: "default" - weechat.color.chat_inactive_window: "default" - weechat.color.chat_nick_offline: "default" - weechat.color.chat_nick_offline_highlight_bg: "blue" - weechat.color.chat_prefix_buffer_inactive_buffer: "default" - irc.color.topic_old: "default" - logger.color.backlog_end: "default" - logger.color.backlog_line: "default" - script.color.text_delimiters: "default" | |||
2013-12-18 | core: add support of UTF-8 chars in horizontal/vertical separators | Sebastien Helleu | |
2013-12-18 | core: add option weechat.look.window_auto_zoom, disable automatic zoom by ↵ | Sebastien Helleu | |
default when terminal becomes too small for windows | |||
2013-12-14 | core: add logical "and" between tags in filters, weechat.look.highlight_tags ↵ | Sebastien Helleu | |
and buffer property "highlight_tags" The logical "and" is made with the separator "+". Example: "irc_notice+nick_toto,nick_test" will match a notice from nick "toto" or any message from nick "test". | |||
2013-12-11 | core: update translations | Sebastien Helleu | |
2013-12-07 | core: add option weechat.look.buffer_position | Sebastien Helleu | |
The value of option can be: - "end": buffer is added after the end of list (number = last number + 1) - "first_gap": buffer is added at first number available in the list (after the end of list if no number is available) | |||
2013-11-30 | core: add option weechat.look.buffer_auto_renumber | Sebastien Helleu | |
New option: weechat.look.buffer_auto_renumber, boolean which is on by default, so the behavior is the same: no gap is allowed in numbers, they start at number 1 and they are auto-renumbered after each command like /buffer move, /buffer merge, ... A new option "renumber" has been added in command /buffer, to renumber a range of buffers (or all). Changes when the option weechat.look.buffer_auto_renumber is off: - command "/buffer move": - the current number will be left free for use, and the target number can be any number >= 1 (possibly higher than the current last buffer number) - the value can be "-" (which moves the buffer to number 1) or "+" (which moves the buffer to the end, ie last number + 1) - command "/buffer swap": - now the buffers are swapped in the list without being "moved" - comand "/buffer [+/-]N": - it is now working with gaps in buffer numbers - command "/buffer merge": - it can now merge a group of merged buffers into another buffer (or buffers merged themselves) - layout can restore buffer numbers with gaps in numbers | |||
2013-11-24 | core: do not update terminal title on startup if option ↵ | Sebastien Helleu | |
weechat.look.window_title is empty | |||
2013-11-13 | core: set option weechat.look.paste_bracketed to "on" by default | Sebastien Helleu | |
2013-11-09 | core: rename option weechat.look.set_title to weechat.look.window_title ↵ | Sebastien Helleu | |
(evaluated string) | |||
2013-11-09 | core: add bar item "buffer_zoom", add signals "buffer_{zoomed|unzoomed}" ↵ | Sebastien Helleu | |
(patch #8204) (patch from Nils Görs) | |||
2013-11-09 | core: remove unneeded warning when read of weechat.conf fails (another ↵ | Sebastien Helleu | |
warning is already displayed) | |||
2013-11-02 | core: add support of italic text (requires ncurses >= 5.9 patch 20130831) | Sebastien Helleu | |
2013-10-20 | core: fix typo in /help weechat.history.max_buffer_lines_number | Sebastien Helleu | |
2013-10-20 | core: fix typo in /help weechat.history.max_buffer_lines_minutes | Sebastien Helleu | |
2013-10-20 | core: add warning about value 0 in help of some history options | Sebastien Helleu | |
Options affected: - weechat.history.max_buffer_lines_minutes - weechat.history.max_buffer_lines_number - weechat.history.max_commands | |||
2013-10-06 | core: add options to customize default text search in buffers | Sebastien Helleu | |
New options: - weechat.look.buffer_search_case_sensitive (boolean, off by default) - weechat.look.buffer_search_force_default (boolean, off by default) - weechat.look.buffer_search_regex (boolean, off by default) - weechat.look.buffer_search_where (prefix, message (by default), prefix_message) | |||
2013-10-06 | core: remove warning about proxy not found for option ↵ | Sebastien Helleu | |
weechat.network.proxy_curl on startup Proxies are not yet fully loaded (when reading weechat.conf), so the warning is not displayed on startup, but only when option is changed. | |||
2013-09-03 | core: rename options weechat.look.day_change_message(2) to ↵ | Sebastien Helleu | |
weechat.look.day_change_message_{1date|2dates} | |||
2013-09-02 | core: add option weechat.look.day_change_message2 | Sebastien Helleu | |
The new option weechat.look.day_change_message2 is used to display day change between two messages, with two dates: the new one, and the old one. Example: -- Mon, 02 Sep 2013 (Thu, 22 Aug 2013) -- | |||
2013-08-25 | core: add note about color codes "${color:xxx}" in /help ↵ | Sebastien Helleu | |
weechat.look.day_change_message |