Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Updated PR from: #284, just for reference
Context
vscode-neovim
does not supportconceal
properly when highlighting for now, therefore, when usinglet g:sneak#label = 1
the labels were not shown as expected, instead, the first character of the match is shown always.vscode-neovim
supportstext decorations
to be shown on top of existing text with the option"vscode-neovim.textDecorationsAtTop": true
in vscode'ssettings.json
easymotion
plugin had a similar issue that was solved usingtextDecorations
for vscode. See https://github.com/asvetliakov/vscode-neovim#vim-easymotion and commit adding text decorationssimplescreenrecorder-2021-10-07_12.18.10.mp4
note 1: all the labels have the same key on them
note 2: you can see the key strokes on the status line at the bottom
What does this PR do?
It adds support for
vscode-neovim
by addingtext-decorations
just when the user is in vscodeEvidence
simplescreenrecorder-2021-10-07_12.26.13.mp4