Update plugins to latest master
This commit is contained in:
parent
64a3f3ee89
commit
ad27bc0a5a
4 changed files with 3 additions and 3 deletions
|
@ -118,7 +118,7 @@ function! pathogen#surround(path) abort
|
|||
let rtp = pathogen#split(&rtp)
|
||||
let path = fnamemodify(a:path, ':s?[\\/]\=$??')
|
||||
let before = filter(pathogen#expand(path), '!pathogen#is_disabled(v:val)')
|
||||
let after = filter(reverse(pathogen#expand(path, sep.'after')), '!pathogen#is_disabled(v:val[0:-7])')
|
||||
let after = filter(reverse(pathogen#expand(path, sep.'after')), '!pathogen#is_disabled(v:val[0 : -7])')
|
||||
call filter(rtp, 'index(before + after, v:val) == -1')
|
||||
let &rtp = pathogen#join(before, rtp, after)
|
||||
return &rtp
|
||||
|
@ -136,7 +136,7 @@ function! pathogen#interpose(name) abort
|
|||
let list = []
|
||||
for dir in pathogen#split(&rtp)
|
||||
if dir =~# '\<after$'
|
||||
let list += reverse(filter(pathogen#expand(dir[0:-6].name, sep.'after'), '!pathogen#is_disabled(v:val[0:-7])')) + [dir]
|
||||
let list += reverse(filter(pathogen#expand(dir[0 : -6].name, sep.'after'), '!pathogen#is_disabled(v:val[0 : -7])')) + [dir]
|
||||
else
|
||||
let list += [dir] + filter(pathogen#expand(dir.sep.name), '!pathogen#is_disabled(v:val)')
|
||||
endif
|
||||
|
|
0
pack/acp/start/gruvbox/gruvbox_256palette.sh
Normal file → Executable file
0
pack/acp/start/gruvbox/gruvbox_256palette.sh
Normal file → Executable file
0
pack/acp/start/gruvbox/gruvbox_256palette_osx.sh
Normal file → Executable file
0
pack/acp/start/gruvbox/gruvbox_256palette_osx.sh
Normal file → Executable file
|
@ -51,7 +51,7 @@ for [s:key, s:type] in [['<C-A>', 'Up'], ['<C-X>', 'Down']]
|
|||
let s:rhs = maparg(s:key, 'n')
|
||||
if !empty(maparg('<Plug>SpeedDatingFallback'.s:type, 'n'))
|
||||
continue
|
||||
elseif s:rhs =~# '^$\|^<Plug>SpeedDating'
|
||||
elseif s:rhs =~# '^$\|^gggH<C-O>G$\|^"+gP$\|^<Plug>SpeedDating'
|
||||
exe 'nnoremap <Plug>SpeedDatingFallback'.s:type s:key
|
||||
else
|
||||
exe 'nmap <Plug>SpeedDatingFallback'.s:type s:rhs
|
||||
|
|
Loading…
Reference in a new issue