VimWiki Missing Commands
The only commands related to the vimwiki plugin that seem to work are VimwikiIndex & VimwikiUIselect, all of the other ones are seemingly missing, and I can't find any obvious reason why in the config file.
@worldpe the triggers to load Vimwiki are one of:
- Leader+W
:VimwikiIndex:VimwikiUISelect
Once you run any one of these, all the rest of Vimwiki's commands will be available from :Vimwiki<Tab>
Pushed a whole new rewrite of vim-config, 100% lua and lazy.nvim as package-manager.
Vimwiki isn't included in default setup, but it's included in extras. You can add it like this:
Paste this to lua/plugins.lua or lua/plugins/<any name>.lua:
return {
{ import = 'rafi.plugins.extras.org.vimwiki' },
}
You can also override key-mappings like this:
return {
{ import = 'rafi.plugins.extras.org.vimwiki' },
{
'vimwiki/vimwiki',
keys = {
{ '<Leader>W', '<cmd>VimwikiIndex<CR>', { noremap = true } },
},
}
}