0 | |
" pathogen.vim - path option manipulation
|
1 | |
" Maintainer: Tim Pope <http://tpo.pe/>
|
2 | |
" Version: 2.4
|
3 | |
|
4 | |
" Install in ~/.vim/autoload (or ~\vimfiles\autoload).
|
5 | |
"
|
6 | |
" For management of individually installed plugins in ~/.vim/bundle (or
|
7 | |
" ~\vimfiles\bundle), adding `execute pathogen#infect()` to the top of your
|
8 | |
" .vimrc is the only other setup necessary.
|
9 | |
"
|
10 | |
" The API is documented inline below.
|
11 | |
|
12 | |
if exists("g:loaded_pathogen") || &cp
|
13 | |
finish
|
14 | |
endif
|
15 | |
let g:loaded_pathogen = 1
|
16 | |
|
17 | |
" Point of entry for basic default usage. Give a relative path to invoke
|
18 | |
" pathogen#interpose() or an absolute path to invoke pathogen#surround().
|
19 | |
" Curly braces are expanded with pathogen#expand(): "bundle/{}" finds all
|
20 | |
" subdirectories inside "bundle" inside all directories in the runtime path.
|
21 | |
" If no arguments are given, defaults "bundle/{}", and also "pack/{}/start/{}"
|
22 | |
" on versions of Vim without native package support.
|
23 | |
function! pathogen#infect(...) abort
|
24 | |
if a:0
|
25 | |
let paths = filter(reverse(copy(a:000)), 'type(v:val) == type("")')
|
26 | |
else
|
27 | |
let paths = ['bundle/{}', 'pack/{}/start/{}']
|
28 | |
endif
|
29 | |
if has('packages')
|
30 | |
call filter(paths, 'v:val !~# "^pack/[^/]*/start/[^/]*$"')
|
31 | |
endif
|
32 | |
let static = '^\%([$~\\/]\|\w:[\\/]\)[^{}*]*$'
|
33 | |
for path in filter(copy(paths), 'v:val =~# static')
|
34 | |
call pathogen#surround(path)
|
35 | |
endfor
|
36 | |
for path in filter(copy(paths), 'v:val !~# static')
|
37 | |
if path =~# '^\%([$~\\/]\|\w:[\\/]\)'
|
38 | |
call pathogen#surround(path)
|
39 | |
else
|
40 | |
call pathogen#interpose(path)
|
41 | |
endif
|
42 | |
endfor
|
43 | |
call pathogen#cycle_filetype()
|
44 | |
if pathogen#is_disabled($MYVIMRC)
|
45 | |
return 'finish'
|
46 | |
endif
|
47 | |
return ''
|
48 | |
endfunction
|
49 | |
|
50 | |
" Split a path into a list.
|
51 | |
function! pathogen#split(path) abort
|
52 | |
if type(a:path) == type([]) | return a:path | endif
|
53 | |
if empty(a:path) | return [] | endif
|
54 | |
let split = split(a:path,'\\\@<!\%(\\\\\)*\zs,')
|
55 | |
return map(split,'substitute(v:val,''\\\([\\,]\)'',''\1'',"g")')
|
56 | |
endfunction
|
57 | |
|
58 | |
" Convert a list to a path.
|
59 | |
function! pathogen#join(...) abort
|
60 | |
if type(a:1) == type(1) && a:1
|
61 | |
let i = 1
|
62 | |
let space = ' '
|
63 | |
else
|
64 | |
let i = 0
|
65 | |
let space = ''
|
66 | |
endif
|
67 | |
let path = ""
|
68 | |
while i < a:0
|
69 | |
if type(a:000[i]) == type([])
|
70 | |
let list = a:000[i]
|
71 | |
let j = 0
|
72 | |
while j < len(list)
|
73 | |
let escaped = substitute(list[j],'[,'.space.']\|\\[\,'.space.']\@=','\\&','g')
|
74 | |
let path .= ',' . escaped
|
75 | |
let j += 1
|
76 | |
endwhile
|
77 | |
else
|
78 | |
let path .= "," . a:000[i]
|
79 | |
endif
|
80 | |
let i += 1
|
81 | |
endwhile
|
82 | |
return substitute(path,'^,','','')
|
83 | |
endfunction
|
84 | |
|
85 | |
" Convert a list to a path with escaped spaces for 'path', 'tag', etc.
|
86 | |
function! pathogen#legacyjoin(...) abort
|
87 | |
return call('pathogen#join',[1] + a:000)
|
88 | |
endfunction
|
89 | |
|
90 | |
" Turn filetype detection off and back on again if it was already enabled.
|
91 | |
function! pathogen#cycle_filetype() abort
|
92 | |
if exists('g:did_load_filetypes')
|
93 | |
filetype off
|
94 | |
filetype on
|
95 | |
endif
|
96 | |
endfunction
|
97 | |
|
98 | |
" Check if a bundle is disabled. A bundle is considered disabled if its
|
99 | |
" basename or full name is included in the list g:pathogen_blacklist or the
|
100 | |
" comma delimited environment variable $VIMBLACKLIST.
|
101 | |
function! pathogen#is_disabled(path) abort
|
102 | |
if a:path =~# '\~$'
|
103 | |
return 1
|
104 | |
endif
|
105 | |
let sep = pathogen#slash()
|
106 | |
let blacklist =
|
107 | |
\ get(g:, 'pathogen_blacklist', get(g:, 'pathogen_disabled', [])) +
|
108 | |
\ pathogen#split($VIMBLACKLIST)
|
109 | |
if !empty(blacklist)
|
110 | |
call map(blacklist, 'substitute(v:val, "[\\/]$", "", "")')
|
111 | |
endif
|
112 | |
return index(blacklist, fnamemodify(a:path, ':t')) != -1 || index(blacklist, a:path) != -1
|
113 | |
endfunction
|
114 | |
|
115 | |
" Prepend the given directory to the runtime path and append its corresponding
|
116 | |
" after directory. Curly braces are expanded with pathogen#expand().
|
117 | |
function! pathogen#surround(path) abort
|
118 | |
let sep = pathogen#slash()
|
119 | |
let rtp = pathogen#split(&rtp)
|
120 | |
let path = fnamemodify(a:path, ':s?[\\/]\=$??')
|
121 | |
let before = filter(pathogen#expand(path), '!pathogen#is_disabled(v:val)')
|
122 | |
let after = filter(reverse(pathogen#expand(path, sep.'after')), '!pathogen#is_disabled(v:val[0:-7])')
|
123 | |
call filter(rtp, 'index(before + after, v:val) == -1')
|
124 | |
let &rtp = pathogen#join(before, rtp, after)
|
125 | |
return &rtp
|
126 | |
endfunction
|
127 | |
|
128 | |
" For each directory in the runtime path, add a second entry with the given
|
129 | |
" argument appended. Curly braces are expanded with pathogen#expand().
|
130 | |
function! pathogen#interpose(name) abort
|
131 | |
let sep = pathogen#slash()
|
132 | |
let name = a:name
|
133 | |
if has_key(s:done_bundles, name)
|
134 | |
return ""
|
135 | |
endif
|
136 | |
let s:done_bundles[name] = 1
|
137 | |
let list = []
|
138 | |
for dir in pathogen#split(&rtp)
|
139 | |
if dir =~# '\<after$'
|
140 | |
let list += reverse(filter(pathogen#expand(dir[0:-6].name, sep.'after'), '!pathogen#is_disabled(v:val[0:-7])')) + [dir]
|
141 | |
else
|
142 | |
let list += [dir] + filter(pathogen#expand(dir.sep.name), '!pathogen#is_disabled(v:val)')
|
143 | |
endif
|
144 | |
endfor
|
145 | |
let &rtp = pathogen#join(pathogen#uniq(list))
|
146 | |
return 1
|
147 | |
endfunction
|
148 | |
|
149 | |
let s:done_bundles = {}
|
150 | |
|
151 | |
" Invoke :helptags on all non-$VIM doc directories in runtimepath.
|
152 | |
function! pathogen#helptags() abort
|
153 | |
let sep = pathogen#slash()
|
154 | |
for glob in pathogen#split(&rtp)
|
155 | |
for dir in map(split(glob(glob), "\n"), 'v:val.sep."/doc/".sep')
|
156 | |
if (dir)[0 : strlen($VIMRUNTIME)] !=# $VIMRUNTIME.sep && filewritable(dir) == 2 && !empty(split(glob(dir.'*.txt'))) && (!filereadable(dir.'tags') || filewritable(dir.'tags'))
|
157 | |
silent! execute 'helptags' pathogen#fnameescape(dir)
|
158 | |
endif
|
159 | |
endfor
|
160 | |
endfor
|
161 | |
endfunction
|
162 | |
|
163 | |
command! -bar Helptags :call pathogen#helptags()
|
164 | |
|
165 | |
" Execute the given command. This is basically a backdoor for --remote-expr.
|
166 | |
function! pathogen#execute(...) abort
|
167 | |
for command in a:000
|
168 | |
execute command
|
169 | |
endfor
|
170 | |
return ''
|
171 | |
endfunction
|
172 | |
|
173 | |
" Section: Unofficial
|
174 | |
|
175 | |
function! pathogen#is_absolute(path) abort
|
176 | |
return a:path =~# (has('win32') ? '^\%([\\/]\|\w:\)[\\/]\|^[~$]' : '^[/~$]')
|
177 | |
endfunction
|
178 | |
|
179 | |
" Given a string, returns all possible permutations of comma delimited braced
|
180 | |
" alternatives of that string. pathogen#expand('/{a,b}/{c,d}') yields
|
181 | |
" ['/a/c', '/a/d', '/b/c', '/b/d']. Empty braces are treated as a wildcard
|
182 | |
" and globbed. Actual globs are preserved.
|
183 | |
function! pathogen#expand(pattern, ...) abort
|
184 | |
let after = a:0 ? a:1 : ''
|
185 | |
let pattern = substitute(a:pattern, '^[~$][^\/]*', '\=expand(submatch(0))', '')
|
186 | |
if pattern =~# '{[^{}]\+}'
|
187 | |
let [pre, pat, post] = split(substitute(pattern, '\(.\{-\}\){\([^{}]\+\)}\(.*\)', "\\1\001\\2\001\\3", ''), "\001", 1)
|
188 | |
let found = map(split(pat, ',', 1), 'pre.v:val.post')
|
189 | |
let results = []
|
190 | |
for pattern in found
|
191 | |
call extend(results, pathogen#expand(pattern))
|
192 | |
endfor
|
193 | |
elseif pattern =~# '{}'
|
194 | |
let pat = matchstr(pattern, '^.*{}[^*]*\%($\|[\\/]\)')
|
195 | |
let post = pattern[strlen(pat) : -1]
|
196 | |
let results = map(split(glob(substitute(pat, '{}', '*', 'g')), "\n"), 'v:val.post')
|
197 | |
else
|
198 | |
let results = [pattern]
|
199 | |
endif
|
200 | |
let vf = pathogen#slash() . 'vimfiles'
|
201 | |
call map(results, 'v:val =~# "\\*" ? v:val.after : isdirectory(v:val.vf.after) ? v:val.vf.after : isdirectory(v:val.after) ? v:val.after : ""')
|
202 | |
return filter(results, '!empty(v:val)')
|
203 | |
endfunction
|
204 | |
|
205 | |
" \ on Windows unless shellslash is set, / everywhere else.
|
206 | |
function! pathogen#slash() abort
|
207 | |
return !exists("+shellslash") || &shellslash ? '/' : '\'
|
208 | |
endfunction
|
209 | |
|
210 | |
function! pathogen#separator() abort
|
211 | |
return pathogen#slash()
|
212 | |
endfunction
|
213 | |
|
214 | |
" Convenience wrapper around glob() which returns a list.
|
215 | |
function! pathogen#glob(pattern) abort
|
216 | |
let files = split(glob(a:pattern),"\n")
|
217 | |
return map(files,'substitute(v:val,"[".pathogen#slash()."/]$","","")')
|
218 | |
endfunction
|
219 | |
|
220 | |
" Like pathogen#glob(), only limit the results to directories.
|
221 | |
function! pathogen#glob_directories(pattern) abort
|
222 | |
return filter(pathogen#glob(a:pattern),'isdirectory(v:val)')
|
223 | |
endfunction
|
224 | |
|
225 | |
" Remove duplicates from a list.
|
226 | |
function! pathogen#uniq(list) abort
|
227 | |
let i = 0
|
228 | |
let seen = {}
|
229 | |
while i < len(a:list)
|
230 | |
if (a:list[i] ==# '' && exists('empty')) || has_key(seen,a:list[i])
|
231 | |
call remove(a:list,i)
|
232 | |
elseif a:list[i] ==# ''
|
233 | |
let i += 1
|
234 | |
let empty = 1
|
235 | |
else
|
236 | |
let seen[a:list[i]] = 1
|
237 | |
let i += 1
|
238 | |
endif
|
239 | |
endwhile
|
240 | |
return a:list
|
241 | |
endfunction
|
242 | |
|
243 | |
" Backport of fnameescape().
|
244 | |
function! pathogen#fnameescape(string) abort
|
245 | |
if exists('*fnameescape')
|
246 | |
return fnameescape(a:string)
|
247 | |
elseif a:string ==# '-'
|
248 | |
return '\-'
|
249 | |
else
|
250 | |
return substitute(escape(a:string," \t\n*?[{`$\\%#'\"|!<"),'^[+>]','\\&','')
|
251 | |
endif
|
252 | |
endfunction
|
253 | |
|
254 | |
" Like findfile(), but hardcoded to use the runtimepath.
|
255 | |
function! pathogen#runtime_findfile(file,count) abort
|
256 | |
let rtp = pathogen#join(1,pathogen#split(&rtp))
|
257 | |
let file = findfile(a:file,rtp,a:count)
|
258 | |
if file ==# ''
|
259 | |
return ''
|
260 | |
else
|
261 | |
return fnamemodify(file,':p')
|
262 | |
endif
|
263 | |
endfunction
|
264 | |
|
265 | |
" vim:set et sw=2 foldmethod=expr foldexpr=getline(v\:lnum)=~'^\"\ Section\:'?'>1'\:getline(v\:lnum)=~#'^fu'?'a1'\:getline(v\:lnum)=~#'^endf'?'s1'\:'=':
|