Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hi do i improve performance when im scrolling my files and code them ? With syntax highlight my vim is so slow. When im switching it off, everything is ok. Is there a way or any recommendation to use it faster ?

share|improve this question
1  
Edit smaller files? What vim filetype is selected? – DigitalRoss Jan 23 '11 at 18:52
3  
My syntax highlighting is fine. Which version of Vim are you using? Normal text/console mode or gVim? Which operating system? Running vim locally or remote? Who created the syntax rules file? How fast is "so slow" - can you quantify the speed? – Greg Hewgill Jan 23 '11 at 18:58
I have the same problem with C syntax highlight and foldmethod=syntax. – skeept Jan 23 '11 at 20:27
The colorscheme might make a difference too. Try a number of them. – frabjous Jan 23 '11 at 21:03
Im using php syntax highlight file from vim distro. php.vim and sometimes when alot of functions on the screen, it freeze when scrolling. i use gVim on my ubuntu – RusAlex Jan 24 '11 at 18:09
show 1 more comment

2 Answers

up vote 6 down vote accepted

Try these settings:

set nocursorcolumn
set nocursorline
syntax sync minlines=256

Also check http://vim.wikia.com/wiki/Fix_syntax_highlighting

share|improve this answer
thanks, i will try, but now i have intel i7 sandy bridge core, and don't see any freezes =) – RusAlex Aug 25 '11 at 10:17
1  
Thanks for the 'nocursorline' tip. I've suffered from gvim being somewhat sluggish for a long time, and disabling cursorline made a considerable difference – aphax Jan 22 '12 at 17:56

You can use the scrolljumpoption. The scrolling won't be smoother but rather than scrolling line by line, it will scroll of scrolljump lines at once.

You can try :
set scrolljump=5

It does not solve your root issue, but it is a workaround.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.