Revert implementation of function s:get_cell_aligns()

This commit reverses a change to s:get_cell_aligns introduced by
bdcfca1e5c.
This commit is contained in:
Лёха 2019-03-18 23:28:58 +03:00 committed by Henry Qin
parent ad8e1d30bf
commit e0f4ab8c5e
1 changed files with 3 additions and 3 deletions

View File

@ -275,9 +275,9 @@ function! s:get_rows(lnum, ...)
endfunction
function! s:get_cell_aligns(lnum, depth)
function! s:get_cell_aligns(lnum)
let aligns = {}
for [lnum, row] in s:get_rows(a:lnum, a:depth)
for [lnum, row] in s:get_rows(a:lnum)
let found_separator = s:is_separator(row)
if found_separator
let cells = vimwiki#tbl#get_cells(row)
@ -356,7 +356,7 @@ function! s:get_aligned_rows(lnum, col1, col2, depth)
endfor
let max_lens = s:get_cell_max_lens(a:lnum, cells, startlnum, rows)
endif
let aligns = s:get_cell_aligns(a:lnum, a:depth)
let aligns = s:get_cell_aligns(a:lnum)
let result = []
for [lnum, row] in rows
if s:is_separator(row)