Update ALL the plugins!
git-svn-id: http://photonzero.com/dotfiles/trunk@80 23f722f6-122a-0410-8cef-c75bd312dd78
This commit is contained in:
parent
0a85941bf4
commit
0ad6077023
42 changed files with 9620 additions and 1644 deletions
|
|
@ -34,9 +34,9 @@ function! s:entries(path)
|
|||
let path = substitute(a:path,'[\\/]$','','')
|
||||
let files = split(glob(path."/.*"),"\n")
|
||||
let files += split(glob(path."/*"),"\n")
|
||||
call filter(files,'v:val !=# "." && v:val !=# ".."')
|
||||
call filter(files,'v:val[-4:-1] !=# ".swp" && v:val[-1:-1] !=# "~"')
|
||||
call map(files,'substitute(v:val,"[\\/]$","","")')
|
||||
call filter(files,'v:val !~# "[\\\\/]\\.\\.\\=$"')
|
||||
call filter(files,'v:val[-4:-1] !=# ".swp" && v:val[-1:-1] !=# "~"')
|
||||
return files
|
||||
endfunction
|
||||
|
||||
|
|
@ -219,7 +219,7 @@ endfunction
|
|||
function! s:Transform(algorithm,type)
|
||||
let sel_save = &selection
|
||||
let cb_save = &clipboard
|
||||
set selection=inclusive clipboard-=unnamed
|
||||
set selection=inclusive clipboard-=unnamed clipboard-=unnamedplus
|
||||
let reg_save = @@
|
||||
if a:type =~ '^\d\+$'
|
||||
silent exe 'norm! ^v'.a:type.'$hy'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue