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

core: add option "scroll_beyond_end" for command /window (task #6745)

This commit is contained in:
Sebastien Helleu
2013-07-17 18:04:44 +02:00
parent 7389514c09
commit bee56c3b7f
10 changed files with 73 additions and 36 deletions
+10 -1
View File
@@ -5611,6 +5611,13 @@ COMMAND_CALLBACK(window)
return WEECHAT_RC_OK;
}
/* scroll beyond the end of buffer */
if (string_strcasecmp (argv[1], "scroll_beyond_end") == 0)
{
gui_window_scroll_beyond_end (ptr_win);
return WEECHAT_RC_OK;
}
/* scroll to previous highlight */
if (string_strcasecmp (argv[1], "scroll_previous_highlight") == 0)
{
@@ -6744,7 +6751,7 @@ command_init ()
" || scroll [-window <number>] [+/-]<value>[s|m|h|d|M|y]"
" || scroll_horiz [-window <number>] [+/-]<value>[%]"
" || scroll_up|scroll_down|scroll_top|"
"scroll_bottom|scroll_previous_highlight|"
"scroll_bottom|scroll_beyond_end|scroll_previous_highlight|"
"scroll_next_highlight|scroll_unread [-window <number>]"
" || swap [-window <number>] [up|down|left|right]"
" || zoom[-window <number>]"),
@@ -6777,6 +6784,7 @@ command_init ()
" scroll_down: scroll a few lines down\n"
" scroll_top: scroll to top of buffer\n"
"scroll_bottom: scroll to bottom of buffer\n"
"scroll_beyond_end: scroll beyond the end of buffer\n"
"scroll_previous_highlight: scroll to previous highlight\n"
"scroll_next_highlight: scroll to next highlight\n"
"scroll_unread: scroll to unread marker\n"
@@ -6818,6 +6826,7 @@ command_init ()
" || scroll_down -window %(windows_numbers)"
" || scroll_top -window %(windows_numbers)"
" || scroll_bottom -window %(windows_numbers)"
" || scroll_beyond_end -window %(windows_numbers)"
" || scroll_previous_highlight -window %(windows_numbers)"
" || scroll_next_highlight -window %(windows_numbers)"
" || scroll_unread -window %(windows_numbers)"