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')
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