diff --git a/autoload/tablemode/spreadsheet.vim b/autoload/tablemode/spreadsheet.vim index 357efe7..f617809 100644 --- a/autoload/tablemode/spreadsheet.vim +++ b/autoload/tablemode/spreadsheet.vim @@ -234,12 +234,13 @@ function! tablemode#spreadsheet#InsertColumn(after) "{{{2 \ 'b') if a:after - execute "normal! ".quantity."p2l" + execute "normal! ".quantity."pl" else - execute "normal! ".quantity."Pl" + execute "normal! ".quantity."P" endif call tablemode#table#Realign('.') + startinsert endif endfunction