Skip to content

Commit

Permalink
Merge pull request VundleVim#454 from vaibhavsagar/patch-1
Browse files Browse the repository at this point in the history
Allow rtp paths with spaces on Windows

Fixes VundleVim#451
Fixes VundleVim#453
  • Loading branch information
jdevera committed Apr 25, 2014
2 parents 526d390 + 4b75122 commit 879529c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions autoload/vundle/config.vim
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@ func! s:rtp_add_defaults()
let default = &rtp
let &rtp = current
for item in reverse(split(default, ','))
let item = fnameescape(item)
exec 'set rtp-=' . item
if fnamemodify(item, ":t") == 'after'
exec 'set rtp+=' . item
Expand Down

0 comments on commit 879529c

Please sign in to comment.