Closed simonmandlik closed 10 months ago
This is not an issue with 'mini.clue', but with how 'lazy.nvim' is used here to call configure 'mini.clues'. In the case of standalone plugin, executing :=MiniClue
right after first step shows that require('mini.clue').setup()
is called without supplied opts
. While with 'mini.nvim' it does.
I this is because 'lazy.nvim' does special detection of 'mini.nvim' which might for some reason not work here.
Using config
key instead of opts
key for standalone plugin solves this.
Thank you!
Contributing guidelines
Module(s)
mini.clue (but perhaps more)
Description
When I install
mini.clue
as a standalone plugin, it is not working properly (some clues are missing and when opening new file with:e
it stops working entirely)Neovim version
v0.10.0-dev-1506+g610f50dda-Homebrew
Steps to reproduce
nvim -nu repro.lua
g
:e repro.lua
g
repro.lua
:Expected behavior
First
g
:Second
g
:Actual behavior
First
g
(only two clues are shown):Second
g
(notice the "g" in the lower bar, no clues are shown):