Skip to content

Instantly share code, notes, and snippets.

@artemave
Created November 7, 2012 10:29
Show Gist options
  • Save artemave/4030759 to your computer and use it in GitHub Desktop.
Save artemave/4030759 to your computer and use it in GitHub Desktop.
SlowDown.vim
function! SlowDown()
let l:rand = (localtime() % 100) + 100
execute 'sleep ' . l:rand . 'm'
endfunction
au CursorMoved,CursorMovedI * :call SlowDown()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment