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

Commit ce1bab0

Browse files
authored
Fix typo in sign_define arguments
This commit adds the missing character 's' to "LspDiagnosticInformationSign" and "LspDiagnosticHintSign".
1 parent f6e1c74 commit ce1bab0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,8 @@ let g:diagnostic_sign_priority = 20
113113
```vim
114114
call sign_define("LspDiagnosticsErrorSign", {"text" : "E", "texthl" : "LspDiagnosticsError"})
115115
call sign_define("LspDiagnosticsWarningSign", {"text" : "W", "texthl" : "LspDiagnosticsWarning"})
116-
call sign_define("LspDiagnosticInformationSign", {"text" : "I", "texthl" : "LspDiagnosticsInformation"})
117-
call sign_define("LspDiagnosticHintSign", {"text" : "H", "texthl" : "LspDiagnosticsHint"})
116+
call sign_define("LspDiagnosticsInformationSign", {"text" : "I", "texthl" : "LspDiagnosticsInformation"})
117+
call sign_define("LspDiagnosticsHintSign", {"text" : "H", "texthl" : "LspDiagnosticsHint"})
118118
```
119119

120120
### Enable/Disable auto popup window

0 commit comments

Comments
 (0)