We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
minimap config is not correct. Use config is too late.
config
To see: wfxr/minimap.vim#178 (comment) Current config
{ 'wfxr/minimap.vim', build = "cargo install --locked code-minimap", -- cmd = {"Minimap", "MinimapClose", "MinimapToggle", "MinimapRefresh", "MinimapUpdateHighlight"}, config = function () vim.cmd ("let g:minimap_width = 10") vim.cmd ("let g:minimap_auto_start = 1") vim.cmd ("let g:minimap_auto_start_win_enter = 1") end, },
We should use init instead:
init
{ 'wfxr/minimap.vim', build = "cargo install --locked code-minimap", -- cmd = {"Minimap", "MinimapClose", "MinimapToggle", "MinimapRefresh", "MinimapUpdateHighlight"}, init = function () vim.cmd ("let g:minimap_width = 10") vim.cmd ("let g:minimap_auto_start = 1") vim.cmd ("let g:minimap_auto_start_win_enter = 1") end, },
The text was updated successfully, but these errors were encountered:
No branches or pull requests
minimap config is not correct. Use
config
is too late.To see: wfxr/minimap.vim#178 (comment)
Current config
We should use
init
instead:The text was updated successfully, but these errors were encountered: