Mac – Why is MacVim much faster than Vim in the Terminal

macvimterminalvim

I've been using Vim and MacVim as may main development tool for last two weeks and have noticed that the cursor scroll speed is much fast and fluent in MacVim than it is in Vim in the Terminal. It's a difference like night and day. Both applications use the same .vimrc file. Dose anyone have an idea what could cause the performance difference?

Best Answer

Vim is run in your shell which is run in your terminal: it inherits many layers of latency, mostly related to redrawing the window and input handling.

MacVim is not run in a terminal and its rendering engine is much snappier. It's not that great, though, when you are used to GVim on Linux.

Related Question