-
-
Save bartlomiejdanek/5161960 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Improve move speed | |
let g:boostmove=0 | |
set updatetime=500 | |
au CursorMoved * call BoostMoveON() | |
au CursorMovedI * call BoostMoveON() | |
au CursorHold * call BoostMoveOFF() | |
au CursorHoldI * call BoostMoveOFF() | |
function BoostMoveON() | |
if (winline() != line('$')) && (line('.') != 1) | |
if (winline() == winheight('.')) || (winline() == 1) | |
let g:boostmove=1 | |
setlocal nocursorline | |
setlocal syntax=OFF | |
endif | |
endif | |
endfunction | |
function BoostMoveOFF() | |
if g:boostmove==1 | |
let g:boostmove=0 | |
setlocal cursorline | |
setlocal syntax=ON | |
endif | |
endfunction |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment