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