From ce1bab036c7dd3a3b6ee48cfaf49f3a54eb791ce Mon Sep 17 00:00:00 2001 From: Kieran Siek Date: Tue, 16 Jun 2020 13:33:30 +0800 Subject: [PATCH] Fix typo in sign_define arguments This commit adds the missing character 's' to "LspDiagnosticInformationSign" and "LspDiagnosticHintSign". --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1320563..f0e4c2f 100644 --- a/README.md +++ b/README.md @@ -113,8 +113,8 @@ let g:diagnostic_sign_priority = 20 ```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"}) +call sign_define("LspDiagnosticsInformationSign", {"text" : "I", "texthl" : "LspDiagnosticsInformation"}) +call sign_define("LspDiagnosticsHintSign", {"text" : "H", "texthl" : "LspDiagnosticsHint"}) ``` ### Enable/Disable auto popup window