diff options
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | autoload/scroll_next.vim | 4 | ||||
-rw-r--r-- | plugin/scroll_next.vim | 4 |
3 files changed, 5 insertions, 5 deletions
@@ -1 +1 @@ -0.3.0 +1.0.0 diff --git a/autoload/scroll_next.vim b/autoload/scroll_next.vim index 8758208..cb40a18 100644 --- a/autoload/scroll_next.vim +++ b/autoload/scroll_next.vim @@ -2,8 +2,8 @@ " page forward with PageDown function! scroll_next#ScrollNext() abort if line('w$') == line('$') - silent! next + return ":\<C-U>next\<CR>" else - execute "normal! \<PageDown>" + return "\<PageDown>" endif endfunction diff --git a/plugin/scroll_next.vim b/plugin/scroll_next.vim index 4535223..ae3f269 100644 --- a/plugin/scroll_next.vim +++ b/plugin/scroll_next.vim @@ -11,6 +11,6 @@ endif let loaded_scroll_next = 1 " Mapping setup -nnoremap <silent> <unique> +nnoremap <expr> <silent> <unique> \ <Plug>(ScrollNext) - \ :<C-U>call scroll_next#ScrollNext()<CR> + \ scroll_next#ScrollNext() |