mirror of
https://github.com/airblade/vim-gitgutter.git
synced 2025-11-08 11:33:48 -05:00
@@ -101,8 +101,8 @@ endfunction
|
||||
function! s:uniq(list)
|
||||
let processed = []
|
||||
for e in a:list
|
||||
if index(a:list, e) == -1
|
||||
call add(a:list, e)
|
||||
if index(processed, e) == -1
|
||||
call add(processed, e)
|
||||
endif
|
||||
endfor
|
||||
return processed
|
||||
|
||||
Reference in New Issue
Block a user