diff options
Diffstat (limited to 'autoload/scroll_next.vim')
-rw-r--r-- | autoload/scroll_next.vim | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/autoload/scroll_next.vim b/autoload/scroll_next.vim deleted file mode 100644 index cb40a18..0000000 --- a/autoload/scroll_next.vim +++ /dev/null @@ -1,9 +0,0 @@ -" Check visibility of last line and flick to :next if appropriate, or just -" page forward with PageDown -function! scroll_next#ScrollNext() abort - if line('w$') == line('$') - return ":\<C-U>next\<CR>" - else - return "\<PageDown>" - endif -endfunction |