Rename get_cell_fast_aligns --> get_cell_aligns_fast

This commit is contained in:
Henry Qin 2019-04-10 11:02:13 -07:00
parent 08dcae9630
commit 63985a52e8
1 changed files with 2 additions and 2 deletions

View File

@ -297,7 +297,7 @@ function! s:get_cell_aligns(lnum, ...)
endfunction
function! s:get_cell_fast_aligns(rows)
function! s:get_cell_aligns_fast(rows)
let aligns = {}
let clen = 0
for [lnum, row] in a:rows
@ -391,7 +391,7 @@ function! s:get_aligned_rows(lnum, col1, col2, depth)
endif
let fst_lens = s:get_cell_max_lens(a:lnum, cells, startlnum, rows[0:0])
let check_all = max_lens != fst_lens
let aligns = s:get_cell_fast_aligns(rows[0:-2])
let aligns = s:get_cell_aligns_fast(rows[0:-2])
let rows[-1][1] = line
endif
endif