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:
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user