https://github.com/cseickel/diagnostic-window.nvim
Shows diagnostic messages in a separate window, which is particularly helpful for long message like those seen in typescript.
https://github.com/cseickel/diagnostic-window.nvim
Last synced: 5 months ago
JSON representation
Shows diagnostic messages in a separate window, which is particularly helpful for long message like those seen in typescript.
- Host: GitHub
- URL: https://github.com/cseickel/diagnostic-window.nvim
- Owner: cseickel
- License: mit
- Created: 2022-06-25T14:36:36.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-06-30T02:20:39.000Z (almost 3 years ago)
- Last Synced: 2024-08-10T15:40:31.806Z (8 months ago)
- Language: Lua
- Size: 9.77 KB
- Stars: 42
- Watchers: 1
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- stars - cseickel/diagnostic-window.nvim - Shows diagnostic messages in a separate window, which is particularly helpful for long message like those seen in typescript. (Lua)
README
# Diagnostic Window
Shows the diagnostic messages for the given line in a split window. This was
created to help decipher very long typescript messages that don't fit nicely into
a floating window or virtual text.This also adds custom syntax highlighting for the diagnostic message.The current
version was designed specifically for typescript errors.
## Quickstart
Clone the repository using your favorite plugin manager, including
[MunifTanjim/nui.vim](https://github.com/MunifTanjim/nui.nvim). For example, with packer:
```lua
use {
"cseickel/diagnostic-window.nvim",
requires = { "MunifTanjim/nui.nvim" }
}```
Then open the window with this command:
```
:DiagWindowShow
```## License
MIT
## Contributing
Please do!