Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-04-02 | core: update Japanese translations | AYANOKOUZI, Ryuunosuke | |
2017-04-01 | core: move line from new features to improvements in ChangeLog | Sébastien Helleu | |
2017-04-01 | aspell: add options to control delimiters in suggestions (closes #940) | Sébastien Helleu | |
New options: - aspell.color.suggestion_delimiter_dict - aspell.color.suggestion_delimiter_word - aspell.look.suggestion_delimiter_dict - aspell.look.suggestion_delimiter_word Option renamed: - aspell.color.suggestions -> aspell.color.suggestion | |||
2017-04-01 | tests: fix tests on dynamic strings | Sébastien Helleu | |
2017-04-01 | api: return pointer to string in function string_dyn_free() if argument ↵ | Sébastien Helleu | |
"free_string" is 0 | |||
2017-03-31 | core: update ChangeLog | Sébastien Helleu | |
2017-03-31 | core: replace python dependency by python2-devel for Cygwin | Sébastien Helleu | |
2017-03-31 | script: move default mouse keys for script plugin from core to script-mouse.c | Sébastien Helleu | |
2017-03-31 | buflist: add key "__quiet" in hashtable for function key_bind | Sébastien Helleu | |
2017-03-31 | api: add special key "__quiet" in function key_bind | Sébastien Helleu | |
2017-03-30 | core: update ChangeLog | Sébastien Helleu | |
2017-03-30 | core: add ${re:#} to get the index of last group captured in evaluation of ↵ | Sébastien Helleu | |
expressions | |||
2017-03-30 | buflist: add mouse support | Sébastien Helleu | |
New options: - buflist.look.mouse_jump_visited_buffer - buflist.look.mouse_move_buffer - buflist.look.mouse_wheel New keys added by buflist plugin: - @item(buflist):button1* => hsignal:buflist_mouse - @item(buflist):button2* => hsignal:buflist_mouse - @bar(buflist):ctrl-wheelup => hsignal:buflist_mouse - @bar(buflist):ctrl-wheeldown => hsignal:buflist_mouse | |||
2017-03-30 | core: make "callback_cmp" optional in call to function arraylist_new() | Sébastien Helleu | |
If no callback is given, a default callback is used, which just compares pointers. | |||
2017-03-29 | buflist: add option buflist.format.number | Sébastien Helleu | |
2017-03-29 | doc: remove "translation missing" tag in French user's guide | Sébastien Helleu | |
2017-03-28 | tests: add tests on combining characters in cut/cutscr (evaluation of ↵ | Sébastien Helleu | |
expression) | |||
2017-03-28 | core: fix cut of chars in "cutscr" of evaluated strings | Sébastien Helleu | |
This fixes two problems: - stop before max char displayed with wide chars - preserve combining chars in the output Before the fix (wrong): >> ${cutscr:3,+,こんにちは世界} == [こん+] >> ${cutscr:1,+,a${\u0308}} == [a+] After the fix (OK): >> ${cutscr:3,+,こんにちは世界} == [こ+] >> ${cutscr:1,+,a${\u0308}} == [ä] | |||
2017-03-27 | doc: fix note about libncursesw5-dev dependency in user's guide | Sébastien Helleu | |
2017-03-27 | doc: rewrite note about libncursesw5-dev dependency in user's guide | Sébastien Helleu | |
2017-03-27 | core: add cut of string with max chars displayed in evaluation of expressions | Sébastien Helleu | |
The syntax is: ${cutscr:max,suffix,string}. The string is cut after max chars displayed on screen. If the string is cut, the optional suffix is added after. | |||
2017-03-26 | Merge pull request #938 from arza-zara/buffer_get_localvar | Sébastien Helleu | |
core: support local variables in /buffer get | |||
2017-03-26 | doc: update Japanese auto-generated files | Sébastien Helleu | |
2017-03-26 | Merge pull request #939 from l/master/translation/ja_JP | Sébastien Helleu | |
core: update Japanese translations | |||
2017-03-26 | relay: check buffer pointer received in "sync" and "desync" commands ↵ | Sébastien Helleu | |
(weechat protocol) (closes #936) | |||
2017-03-26 | relay: remove buffer from synchronized buffers when it is closed (fix memory ↵ | Sébastien Helleu | |
leak) | |||
2017-03-26 | doc: fix some translations of "library" in French | Sébastien Helleu | |
2017-03-26 | core: fix typo librairies -> libraries | Sébastien Helleu | |
2017-03-26 | core: support local variables in /buffer get | arza | |
2017-03-26 | core: update Japanese translations | AYANOKOUZI, Ryuunosuke | |
2017-03-25 | buflist: add option buflist.look.display_conditions | Sébastien Helleu | |
2017-03-25 | buflist: add option buflist.look.signals_refresh | Sébastien Helleu | |
2017-03-25 | doc: add command /buflist in user's guide | Sébastien Helleu | |
2017-03-25 | core: update translations | Sébastien Helleu | |
2017-03-25 | core: update ChangeLog | Sébastien Helleu | |
2017-03-25 | buflist: add command /buflist | Sébastien Helleu | |
2017-03-25 | buflist: add formats for hotlist | Sébastien Helleu | |
New options: - buflist.format.hotlist - buflist.format.hotlist_separator | |||
2017-03-25 | irc: fix type of values for hashtable extra_vars in irc_server_get_default_msg | Sébastien Helleu | |
2017-03-25 | core: fix type of values for hashtables extra_vars and options in ↵ | Sébastien Helleu | |
gui_bar_check_conditions | |||
2017-03-25 | doc: add buflist plugin in FAQ | Sébastien Helleu | |
2017-03-25 | doc: add buflist plugin in developer's guide | Sébastien Helleu | |
2017-03-25 | doc: add buflist plugin in user's guide | Sébastien Helleu | |
2017-03-25 | buflist: add option "buflist.format.lag" and variable "format_lag" for ↵ | Sébastien Helleu | |
buffer line format | |||
2017-03-25 | core: prevent infinite loop in evaluation of expression with extra_vars_eval | Sébastien Helleu | |
When extra variables are evaluated, to prevent infinite loop if the evaluated variable is calling itself, it is removed from hashtable "extra_vars" before evaluation. | |||
2017-03-25 | irc: send signal "irc_server_lag_changed", store lag in server buffer | Sébastien Helleu | |
The lag is stored in the local variable "lag" of the server buffer. When there is no lag, the local variable does not exist. | |||
2017-03-25 | core: add cut of string in evaluation of expressions | Sébastien Helleu | |
The syntax is: ${cut:max,suffix,string}. The string is cut after max chars. If the string is cut, the optional suffix is added after. | |||
2017-03-25 | buflist: use hotlist pointer in buffer hdata | Sébastien Helleu | |
2017-03-25 | core: add hotlist pointer in buffer structure | Sébastien Helleu | |
2017-03-25 | buflist: add option buflist.look.sort | Sébastien Helleu | |
2017-03-25 | api: add arraylist functions | Sébastien Helleu | |
New functions: - arraylist_new - arraylist_size - arraylist_get - arraylist_search - arraylist_insert - arraylist_add - arraylist_remove - arraylist_clear - arraylist_free |