Start insert mode after adding a column

This commit is contained in:
ibbem
2020-04-13 22:34:44 +02:00
parent 85a5e3d4e1
commit 46e4493b30

View File

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