Skip to content
This repository was archived by the owner on Jul 6, 2021. It is now read-only.

Commit 39b50b3

Browse files
committed
doc: add g:diagnostic_enable_underline
1 parent bdef92a commit 39b50b3

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ make it a more user friendly without adding too much to it.
1313
- Jump to next/previous diagnostic under your cursor.
1414
- Automatically open pop up window that shows line diagnostic while jumping.
1515
- Show error sign in columns.
16+
- Show error underline in symbols.
1617
- Delay diagnostic when you're in insert mode.
1718

1819
## Demo
@@ -117,6 +118,15 @@ call sign_define("LspDiagnosticsInformationSign", {"text" : "I", "texthl" : "Lsp
117118
call sign_define("LspDiagnosticsHintSign", {"text" : "H", "texthl" : "LspDiagnosticsHint"})
118119
```
119120

121+
### Enable/Disable Underline
122+
123+
- By default, the build-in Nvim LSP will show a underline on every symbol that
124+
you have a diagnostic message on. You can turn this off by
125+
126+
```vim
127+
let g:diagnostic_enable_underline = 0
128+
```
129+
120130
### Enable/Disable auto popup window
121131

122132
- When you jump to next or previous diagnostic, line diagnostic message will popup

0 commit comments

Comments
 (0)