On 4/19/06, Robert Hicks <[EMAIL PROTECTED]> wrote: > If I open a file with a long enough path name Vim will stop loading > until I "hit enter" to continue. How can I change this?
I see two or three methods. You get 'Hit Enter' prompt because message is wider than terminal window. Solution 1) use: vim -c 'silent e FILE' vim -c 'silent args FILES' :silent e FILE :silent args FILES This is relatively ultimate method because it suppresses message at all. :silent! suppresses even stronger than :silent. Solution 2) :help shortmess and :set autocd ':set autocd' helps because message gets shorter. #2 is not as ultimate as #1 because message still potentially be wider than 'columns'. Solution 3) #2 + make vim window as wide as possible if you can resize it. Yakov
