1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-04 00:33:13 +02:00

core: move /input jump actions to command /buffer jump

Actions moved to command `/buffer jump`:

* `/input jump_smart` -> `/buffer jump smart`
* `/input jump_previously_visited_buffer` -> `/buffer jump prev_visited`
* `/input jump_next_visited_buffer` -> `/buffer jump next_visited`
* `/input jump_last_buffer_displayed` -> `/buffer jump last_displayed`
This commit is contained in:
Sébastien Helleu
2022-12-25 17:00:37 +01:00
parent 9bd6cbf4bd
commit c9796a3141
39 changed files with 1206 additions and 671 deletions
+2 -2
View File
@@ -269,7 +269,7 @@ buflist_hsignal_cb (const void *pointer, void *data, const char *signal,
buflist_config_look_mouse_jump_visited_buffer)
&& (current_buffer_number == number))
{
weechat_command (NULL, "/input jump_previously_visited_buffer");
weechat_command (NULL, "/buffer jump prev_visited");
}
else
{
@@ -290,7 +290,7 @@ buflist_hsignal_cb (const void *pointer, void *data, const char *signal,
buflist_config_look_mouse_jump_visited_buffer)
&& (current_buffer_number == number))
{
weechat_command (NULL, "/input jump_next_visited_buffer");
weechat_command (NULL, "/buffer jump next_visited");
}
}
else if (weechat_string_match (ptr_key, "*wheelup", 1))