On 12/13/12 11:11, dza wrote: > I wonder why my Vim is so slow over our Windows samba share - not > only opening/closing is slow - also typing and edit/insert > commands are slow as well :-commands, plugins, everything. > > Can I tame Vim running on a fileshare? Or make it cache the files > locally so it doesn't slow down? > > I've seen alot of suggestions, but none of them seems to do the > trick.
My first thought would be to check where your swapfile is located. You can check the value of 'dir' :set dir? to see where Vim will try to write the swap file. If it's on a low-bandwidth or high-latency connection such as a shared drive, you might want to move it locally. You can read the grisly details at :help 'dir' Thus, you might want to remove "." from the setting for your network files: :set dir-=. or perhaps with an autocmd that only does that for network files. -tim -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php