1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-29 22:36:38 +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
+50
View File
@@ -1387,6 +1387,56 @@ TEST(GuiBuffer, VisitedGetIndexNext)
/* TODO: write tests */
}
/*
* Tests functions:
* gui_buffer_jump_smart
*/
TEST(GuiBuffer, JumpSmart)
{
/* TODO: write tests */
}
/*
* Tests functions:
* gui_buffer_jump_last_buffer_displayed
*/
TEST(GuiBuffer, JumpLastBufferDisplayed)
{
/* TODO: write tests */
}
/*
* Tests functions:
* gui_buffer_jump_visited_by_index
*/
TEST(GuiBuffer, JumpVisitedByIndex)
{
/* TODO: write tests */
}
/*
* Tests functions:
* gui_buffer_jump_previously_visited_buffer
*/
TEST(GuiBuffer, JumpPreviouslyVisitedBuffer)
{
/* TODO: write tests */
}
/*
* Tests functions:
* gui_buffer_jump_next_visited_buffer
*/
TEST(GuiBuffer, JumpNextVisitedBuffer)
{
/* TODO: write tests */
}
/*
* Tests functions:
* gui_buffer_hdata_buffer_cb