Browse Source

Allow rtp paths with spaces on Windows

Suggested by @ikurcubic
pull/454/head
Vaibhav Sagar 12 years ago
parent
commit
4b751224d3
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