Browse Source

Merge pull request #454 from vaibhavsagar/patch-1

Allow rtp paths with spaces on Windows

Fixes #451
Fixes #453
pull/457/head
Jacobo de Vera 12 years ago
parent
commit
879529ce39
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      autoload/vundle/config.vim

+ 1
- 0
autoload/vundle/config.vim View File

@ -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


Loading…
Cancel
Save