On my computer at work, any time I open a file located on a network share, GVim becomes completely unusable. Scrolling through the document can take 15 seconds to go one "page". Even using the movement keys to go from one word to another can take 2 to 3 seconds. This seems to be a new behavior, but for the life of me I can't remember changing anything that would cause it. I'm under the impression that Vim doesn't actually access a file except on open and on save. Is that right?
|
|
Swap file has nothing to do with it. I have my swap file local and still have the problem. I use Process Monitor from SysInternals.com and it revealed bad behavior when attempting to open "\server\TestTool\foo\ReadMe.TXT" It first attempts a CreateFile (aka, Directory open) on "\serve\". Notice the last character is missing. This will cause 4 seconds to time out with "OBJECT PATH INVALID". Then it tries CreateFile on "\server\TestToo\". Server name is correct by the last letter of "TestTool" is clipped. Again, a 3 second time out with "BAD NETWORK NAME". Finally it gets it right and calls CreateFile on "\server\TestTool\" which works right away. Then CreateFile on "\server\TestTool\foo" which works right away. Then CreateFile on "\server\TestTool\foo\ReadMe.TXT" which works right away. WHY is it trying bad names for the server and the root directory??? What madness is this? |
|||||||
|
|
There are a few factors which may affect this. First, make sure you have Vim setup to prefer storing the swapfile locally. If your
This prepends the Second, do the same for the backup file that Vim creates. Same situation as above but the option you'll be changing is Third, make sure you disable the matchparen plugin. This plugin is new to Vim 7, so you may be used to using an older version of Vim. This causes frequent scanning of the file for matching parens, braces, etc. which can drastically slow Vim down when the file is on a network share. Again, this should go in your vimrc.
If you only want to disable the plugin temporarily, you can use the command Finally, if none of those help you can always copy the file locally and edit it. |
|||||||
|
|
A follow up on jamessan's answer: to disable the plugin automatically when you edit files on a share, put this line in you _vimrc
|
|||
|
|
|
I fixed this issue after setting HOME path by force in advanced system settings. (Your current HOME path would be a network directory.)
|
||||
|
|
|
You could consider installing LargeFile plugin. It disables a couple of features impacting the performance. |
|||
|
|
|
Having a similar issue as David Anderson, but no solution yet. When loading
Then it does many loops like:
To compare with Notepad++ which loads files almost instantaneously there are more lines and Notepad++ never queries Also the duration (Duration column) written in Process Monitor is low, but the time taken by Vim seem quiet high (Time of Day column) for the CreateFile I've no plugins installed as far as I know and followed other tips to speed up network shares loading. Note: The dollar is in the path. More weird is that Vim will load very fast on more recent Windows Server (2008 instead of 2003) with the same folder structure. |
||||
|
|