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

Commit

Permalink
README update
Browse files Browse the repository at this point in the history
  • Loading branch information
haorenW1025 committed May 14, 2020
1 parent da5e935 commit 4383e5c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,18 @@ let g:space_before_virtual_text = 5
```vim
let g:diagnostic_show_sign = 0
```

- Make sure to use the latest branch of Neovim which has sign support.

- If you want to change the symbols of sign, use `sign_define` to change it

```vim
call sign_define("LspDiagnosticsErrorSign", {"text" : "E", "texthl" : "LspDiagnosticsError"})
call sign_define("LspDiagnosticsWarningSign", {"text" : "W", "texthl" : "LspDiagnosticsWarning"})
call sign_define("LspDiagnosticInformationSign", {"text" : "I", "texthl" : "LspDiagnosticsInformation"})
call sign_define("LspDiagnosticHintSign", {"text" : "H", "texthl" : "LspDiagnosticsHint"})
```

### Enable/Disable auto popup window

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

0 comments on commit 4383e5c

Please sign in to comment.