Jaehwang Jung
Jaehwang Jung
- reproducible on NeoVim nightly, 0.4.4, 0.3.8 with pynvim 0.4.3 - Vim 8.2.2648 with `+python3` works correctly - Operating system/version: ubuntu 20.04 ### Steps to reproduce using `nvim -u NORC`...
Fixes the race between inlayHint request and buffer invalidation. Fixes #249
### I've searched open & closed issues for similar requests Yes ### Package name vscode-markdown-languageserver ### Package homepage https://github.com/microsoft/vscode/tree/main/extensions/markdown-language-features/server ### Languages markdown ### How is this package distributed? npm: https://www.npmjs.com/package/vscode-markdown-languageserver
Thanks for nice plugin! Currently, info.vim uses `info:...` format for buffer names. I suggest changing it to the standard `info://...` format, following many other plugins, e.g. `fugitive://`, `man://`, `fern://`. Vim...
Problem: The current implementation of `s:WinDo()` fails at avoiding some side effects. Specifically, `:windo` and `:wincmd w` trigger `CursorMoved` even if `noautocmd` is used (both in Vim and Nvim ≥...
fixes #52. Example: * list item > 123 > asdf * > 123 > asdf > aawef > quote line 1 > quote line 2 >asdf * item 1 ```...
Use `github-slugger` package for slugifying heading anchors. This makes the internal links compatible with github's markdown. Fixes #191
Problem: `has-ancestor?` predicate can take long when the match is deep in the tree, e.g., long `else if` chain in C. This may slow down highlighting and thus redrawing significantly....
Problem: While waiting for codelens response for a buffer, the buffer may have been deleted. This results in invalid buffer error when resolving the lenses. Problem: Ensure validity of the...