An open API service indexing awesome lists of open source software.

https://github.com/JMarkin/cmp-diag-codes

nvim-cmp plugin for diagnostic codes
https://github.com/JMarkin/cmp-diag-codes

nvim-cmp

Last synced: 6 months ago
JSON representation

nvim-cmp plugin for diagnostic codes

Awesome Lists containing this project

README

          

# cmp-diag-codes

Simple completion for diagnostic codes, useful for disable some codes.

# Usage

```lua
require("cmp").setup({
-- other settings
sources = {
{
name = "diag-codes",
-- default completion available only in comment context
-- use false if you want to get in other context
option = { in_comment = true }
},
},
})