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
Stumpled upon this issue working on another lsp client and then testing in vim-lsp to compare.
vim-vital-vs/autoload/vital/__vital__/VS/Vim/Syntax/Markdown.vim
Line 57 in f80c0d8
with rust-analyzer when completing Copy and showing the popup:
sku{'throwpoint': 'function <SNR>60_debounceTimeTimerCallback[1]..<SNR>60_switchMapInputSourceCallback[8]..<SNR>60_takeUntilFactory[7]..<SNR>60_tapSouceFactory[3]..<SNR>60_listFactory[8]..<SNR>60_tapSourceCallback[1]..<lambda>532[1]..<SNR>92_show_floating_window[65]..<SNR>82_do[10]..<lambda>533[1]..<SNR>77_apply[51]..<SNR>77__execute, line 7', 'exception': 'Vim(syntax):E484: Can''t open file syntax/text.vim'}
Due to:
```text the trait `Copy` may not be implemented for this type; field `points` does not implement `Copy` ```
You should make some check for the file first.. like !empty(glob($"{$VIMRUNTIME}/syntax/{mark}.vim"))
!empty(glob($"{$VIMRUNTIME}/syntax/{mark}.vim"))
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Stumpled upon this issue working on another lsp client and then testing in vim-lsp to compare.
vim-vital-vs/autoload/vital/__vital__/VS/Vim/Syntax/Markdown.vim
Line 57 in f80c0d8
with rust-analyzer when completing Copy and showing the popup:
Due to:
You should make some check for the file first.. like
!empty(glob($"{$VIMRUNTIME}/syntax/{mark}.vim"))
The text was updated successfully, but these errors were encountered: