2016-11-03 109 views
0

在Ubuntu 16.04(Xenial)中運行的VMware gvim 7.4在VMWare 12.5.0與Windows 10主機的播放器上運行。
向上/向下尋呼(ctrl-b,ctrl-f)非常慢,我運行了這個提供的測試 ubuntu bug report。這表明100倍放緩。gvim在Ubuntu guest虛擬機內部vmware中重繪問題

有誰知道這個原因和解決方法/解決方法?提前致謝。

[email protected]:~$ time vim -u NONE -U NONE -S test-redraw-speed.vim /etc/init.d/README 

real 0m2.706s 
user 0m0.624s 
sys 0m1.196s 
[email protected]:~$ time gvim -u NONE -U NONE -f -S test-redraw-speed.vim /etc/init.d/README 

real 23m4.198s 
user 0m32.328s 
sys 0m5.904s 

顯示驅動程序信息。

[email protected]:~$ sudo lshw -c video 
    *-display   
     description: VGA compatible controller 
     product: SVGA II Adapter 
     vendor: VMware 
     physical id: f 
     bus info: [email protected]:00:0f.0 
     version: 00 
     width: 32 bits 
     clock: 33MHz 
     capabilities: vga_controller bus_master cap_list rom 
     configuration: driver=vmwgfx latency=64 
     resources: irq:16 ioport:1070(size=16) memory:e8000000-efffffff memory:fe000000-fe7fffff memory:c0200000-c0207fff 

回答

0

我取消了對Xenial我現有的VIM-GTK並安裝VIM-gtk3,現在它幾乎一樣快,終端VIM。

sudo apt remove vim-gtk 
sudo apt install vim-gtk3 
相關問題