aboutsummaryrefslogtreecommitdiff
path: root/plugin/scroll_next.vim
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/scroll_next.vim')
-rw-r--r--plugin/scroll_next.vim7
1 files changed, 3 insertions, 4 deletions
diff --git a/plugin/scroll_next.vim b/plugin/scroll_next.vim
index ae3f269..f9e19bf 100644
--- a/plugin/scroll_next.vim
+++ b/plugin/scroll_next.vim
@@ -10,7 +10,6 @@ if exists('loaded_scroll_next') || &compatible || v:version < 700
endif
let loaded_scroll_next = 1
-" Mapping setup
-nnoremap <expr> <silent> <unique>
- \ <Plug>(ScrollNext)
- \ scroll_next#ScrollNext()
+" If last line visible, go to next file, otherwise page down
+nnoremap <expr> <Plug>(ScrollNext)
+ \ line('w$') == line('$') ? ":\<C-U>next\<CR>" : "\<PageDown>"