unblevable / quick-scope

Lightning fast left-right movement in Vim
MIT License
1.43k stars 54 forks source link

quick-scope taking 100% of CPU #68

Closed isakhammer closed 3 years ago

isakhammer commented 3 years ago

For some reason does quick-scope take 100% of my CPU when I am editing in latex and slows vim down alot. Any idea why?

pic-full-201203-1008-05

Here is my vimrc:

if ! filereadable(system('echo -n "${XDG_CONFIG_HOME:-$HOME/.config}/vim/autoload/plug.vim"'))
        echo "Downloading junegunn/vim-plug to manage plugins..."
        silent !mkdir -p ${XDG_CONFIG_HOME:-$HOME/.config}/vim/autoload/
        silent !curl "https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim" > ${XDG_CONFIG_HOME:-$HOME/.config}
/vim/autoload/plug.vim
        autocmd VimEnter * PlugInstall
endif

call plug#begin(system('echo -n "${XDG_CONFIG_HOME:-$HOME/.config}/vim/plugged"'))
Plug 'unblevable/quick-scope'
call plug#end()
bradford-smith94 commented 3 years ago

I don't have any initial ideas, but the latest version (literally just pushed) includes #64. Can you try with the latest version to see if the timer delay fixes this?

isakhammer commented 3 years ago

Nevermind. Changed operating system and it worked normal again. No idea why.