Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- " Barry Arthur
- " 2011 06 22
- func! InteliScrollDown()
- let fwl = line('w0')
- let lwl = line('w$')
- let lbl = line('$')
- if (lbl - lwl) >= (lwl - fwl)
- return "\<c-f>"
- else
- return "\<c-d>"
- endif
- endfunc
- nnoremap <expr> <PageDown> InteliScrollDown()
Advertisement
Add Comment
Please, Sign In to add comment