This website works better with JavaScript.
Home
Explore
Help
Sign In
RuhNetConsulting
/
Vundle.vim
mirror of
https://github.com/VundleVim/Vundle.vim.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Projects
0
Releases
10
Wiki
Activity
Browse Source
Resolve full doc dir path when running helptags
Prevents error 150 when user has doc/* in wildignore
Fixes
#112
pull/400/merge
Jacobo de Vera
12 years ago
parent
8dc18e4a42
commit
6545681f56
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
autoload/vundle/installer.vim
+ 1
- 1
autoload/vundle/installer.vim
View File
@ -207,7 +207,7 @@ endf
func
!
s
:
helptags
(
rtp
)
abort
" it is important to keep trailing slash here
let
doc_path
=
resolve
(
a
:
rtp
)
.
'/doc/'
let
doc_path
=
resolve
(
a
:
rtp
.
'/doc/'
)
call
s
:
log
(
':helptags '
.
doc_path
)
try
execute
'helptags '
.
doc_path
Write
Preview
Loading…
Cancel
Save