in insert mode, tab is mapped to vimwiki#tbl#kbd_tab(), however I'm using coc-nvim to complete words which using tab.
How to unmap tab to the func? I tried to map another keymap to it but doesn't work.
If you switch to the dev branch there is an option to disable groups of key mappings.
Thank you @ranebrown , this solves the issue.
@mgdreamingstar what was the setting you used? can't seem to find it.
Edit: Figured it out. Pasting below for reference:
Plug 'vimwiki/vimwiki', { 'branch': 'dev' }
let g:vimwiki_table_mappings = 0
The above did not work for me, but adding this to my init.vim did:
au filetype vimwiki silent! iunmap <buffer> <Tab>
Most helpful comment
@mgdreamingstar what was the setting you used? can't seem to find it.Edit: Figured it out. Pasting below for reference: