From: R. Steve McKown Date: Mon, 8 Jun 2015 20:26:31 +0000 (-0600) Subject: pathogen#infect(): don't list default parameter X-Git-Url: https://oss.titaniummirror.com/gitweb?p=smckown%2Fdotfiles.git;a=commitdiff_plain;h=cd6c9d311b8e28588c5fa9bd33a9bacf73267dd5 pathogen#infect(): don't list default parameter 'bundle/{}' is the default, so there is no need to list it. When migrating the vim configuration into the dotfiles repository, I at one point encountered errors when using pathogen#infect() without an argument, where listing the default argument worked. I didn't at that time investigate the problem, which appears to be no problem. --- diff --git a/vimrc b/vimrc index cb58ffc..68d687e 100644 --- a/vimrc +++ b/vimrc @@ -15,7 +15,7 @@ set t_Co=256 " All addons managed via pathogen filetype off runtime bundle/vim-pathogen/autoload/pathogen.vim -call pathogen#infect('bundle/{}') +call pathogen#infect() call pathogen#helptags() " This .vimrc depends upon the sensible plugin for proper operation.