Remove redundant layer of branching in get_cell_aligns_fast
This commit is contained in:
parent
63985a52e8
commit
048f2eb34a
@ -313,19 +313,15 @@ function! s:get_cell_aligns_fast(rows)
|
||||
if !empty(cs)
|
||||
let lstart = len(cs[1])
|
||||
let lend = len(cs[2])
|
||||
if lstart > 0 || lend > 0
|
||||
if lstart > 0 && lend > 0
|
||||
let aligns[idx] = 'center'
|
||||
else
|
||||
if lend > 0
|
||||
elseif lend > 0
|
||||
let aligns[idx] = 'left'
|
||||
elseif lstart > 0
|
||||
let aligns[idx] = 'right'
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endfor
|
||||
endfor
|
||||
for idx in range(clen)
|
||||
|
Loading…
Reference in New Issue
Block a user