summaryrefslogtreecommitdiff
path: root/doc/en
AgeCommit message (Collapse)Author
2017-05-23doc: add missing mouse keys on buflist bar in user's guideSébastien Helleu
2017-05-23buflist: add keys F1/F2, alt+F1/alt+F2 to scroll the buflist barSébastien Helleu
2017-05-19buflist: add variable ${current_buffer} in bar item evaluationSébastien Helleu
2017-05-18buflist: add missing indentation in /help buflistSébastien Helleu
2017-05-18buflist: add option "bar" in command /buflist, do not automatically add the ↵Sébastien Helleu
bar when buflist is disabled (closes #994)
2017-05-10doc: move note in function hook_command_run (plugin API reference)Sébastien Helleu
2017-05-06doc: update auto-generated files with hdataSébastien Helleu
2017-05-06core: add option weechat.completion.nick_case_sensitive (closes #981)Sébastien Helleu
2017-05-05buflist: add option buflist.look.enabledSébastien Helleu
2017-05-02irc: add option "open" in command /server (closes #966)Sébastien Helleu
2017-04-29doc: add numeric comparison example in function string_eval_expression ↵Sébastien Helleu
(plugin API reference)
2017-04-29doc: add list of logical and comparison operators in function ↵Sébastien Helleu
string_eval_expression (plugin API reference)
2017-04-29core: improve translation of /help evalSébastien Helleu
2017-04-29core: update translationsSébastien Helleu
2017-04-27doc: fix OFTC URL in user's guideSébastien Helleu
2017-04-26buflist: add support of hdata "irc_server" and "irc_channel" in sort option ↵Sébastien Helleu
(closes #968)
2017-04-25Merge pull request #955 from arza-zara/weechat-fiSébastien Helleu
doc: add non-official support channel #weechat-fi in user's guide
2017-04-25buflist: add pointers to IRC server and channelSébastien Helleu
New pointers in evaluated formats: - irc_server: IRC server - irc_channel: IRC channel
2017-04-25doc: update auto-generated files with buflist optionsSébastien Helleu
2017-04-24core: add a way to count the suffix length in max chars displayed in cut of ↵Sébastien Helleu
string ("cut:" and "cutscr:") (closes #963) The format to use is one of: - ${cut:+max,suffix,string} - ${cutscr:+max,suffix,string} With the "+" before max, WeeChat ensures there are at most "max" chars in output, including the length of suffix string.
2017-04-23buflist: add option buflist.format.indentSébastien Helleu
2017-04-23script: remove option script.scripts.url_force_https, use HTTPS by default ↵Sébastien Helleu
in option script.scripts.url (issue #253)
2017-04-21doc: update auto-generated files with buflist optionsSébastien Helleu
2017-04-21doc: fix translation of command "eval" in user's guideSébastien Helleu
2017-04-18doc: add non-official support channel #weechat-fi in user's guidearza
2017-04-08core: update translationsSébastien Helleu
2017-04-06core: add Curl options for versions 7.50.0 to 7.52.0Sébastien Helleu
2017-04-02doc: add min WeeChat version in function string_eval_expression (plugin API ↵Sébastien Helleu
reference)
2017-04-02buflist: add options buflist.look.nick_prefix and buflist.look.nick_prefix_emptySébastien Helleu
The option buflist.look.signals_refresh is not an extra list of signals for refresh, so it is empty by default. The default list of signals is handled directly by buflist and not visible to the user.
2017-04-01aspell: 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-01api: return pointer to string in function string_dyn_free() if argument ↵Sébastien Helleu
"free_string" is 0
2017-03-31script: move default mouse keys for script plugin from core to script-mouse.cSébastien Helleu
2017-03-31api: add special key "__quiet" in function key_bindSébastien Helleu
2017-03-30core: add ${re:#} to get the index of last group captured in evaluation of ↵Sébastien Helleu
expressions
2017-03-30buflist: add mouse supportSé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-30core: 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-29buflist: add option buflist.format.numberSébastien Helleu
2017-03-27doc: fix note about libncursesw5-dev dependency in user's guideSébastien Helleu
2017-03-27doc: rewrite note about libncursesw5-dev dependency in user's guideSébastien Helleu
2017-03-27core: add cut of string with max chars displayed in evaluation of expressionsSé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-25buflist: add option buflist.look.display_conditionsSébastien Helleu
2017-03-25buflist: add option buflist.look.signals_refreshSébastien Helleu
2017-03-25doc: add command /buflist in user's guideSébastien Helleu
2017-03-25core: update translationsSébastien Helleu
2017-03-25buflist: add command /buflistSébastien Helleu
2017-03-25doc: add buflist plugin in FAQSébastien Helleu
2017-03-25doc: add buflist plugin in developer's guideSébastien Helleu
2017-03-25doc: add buflist plugin in user's guideSébastien Helleu
2017-03-25irc: send signal "irc_server_lag_changed", store lag in server bufferSé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-25core: add cut of string in evaluation of expressionsSé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.