-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Currently vim-signjump uses the following to get a list of all placed signs in a buffer:
split(execute('sign place buffer='.a:buffer, 'silent'), '\n'),
However, this doesn't work when a plugin has placed signs in their own group (an example is vim-lsp).
Changing this to:
split(execute('sign place group=* buffer='.a:buffer, 'silent'), '\n'), Fixes it. I haven't been able to observe an ill effect in vim-signjump.
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working