0

I have pathogen setup however when it finishes loading I have to press the Enter key as shown in this screen shot.
enter image description here

Is there a way how to disable the 'Press Enter or type command to continue' prompt but keep it when other shell scripts are run usng the .vimrc file or another method?

I have had a look at How can I suppress the "press enter" prompt when opening files in diff mode? however the answer looks like it disables the prompt for all scripts when I want it disabled only when pathogen loads.

iProgram
  • 1,589
  • 2
  • 15
  • 25
  • 1
    The only think in my vimrc file for pathogen is execute pathogen#infect() and it does not ask me to hit enter. Are you invoking it differently? – Martin York Mar 11 '15 at 18:24

1 Answers1

9

Change the call pathogen#runtime_append_all_bundles() line in your vimrc to call pathogen#infect(), as the message suggests.

jamessan
  • 11,045
  • 2
  • 38
  • 53