Skip to content

Commit

Permalink
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion autoload/LanguageClient.vim
Original file line number Diff line number Diff line change
@@ -892,7 +892,7 @@ function! LanguageClient#explainErrorAtPoint(...) abort
\ 'handle': s:IsFalse(l:Callback),
\ }
call extend(l:params, get(a:000, 0, {}))
return LanguageClient#Call('$languageClient/explainErrorAtPoint', l:params, l:Callback)
return LanguageClient#Call('languageClient/explainErrorAtPoint', l:params, l:Callback)
endfunction

let g:LanguageClient_omniCompleteResults = []
2 changes: 1 addition & 1 deletion src/types.rs
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ pub const REQUEST__SetLoggingLevel: &str = "languageClient/setLoggingLevel";
pub const REQUEST__RegisterHandlers: &str = "languageClient/registerHandlers";
pub const REQUEST__NCMRefresh: &str = "LanguageClient_NCMRefresh";
pub const REQUEST__NCM2OnComplete: &str = "LanguageClient_NCM2OnComplete";
pub const REQUEST__ExplainErrorAtPoint: &str = "$languageClient/explainErrorAtPoint";
pub const REQUEST__ExplainErrorAtPoint: &str = "languageClient/explainErrorAtPoint";
pub const REQUEST__FindLocations: &str = "languageClient/findLocations";
pub const NOTIFICATION__HandleBufNewFile: &str = "languageClient/handleBufNewFile";
pub const NOTIFICATION__HandleBufReadPost: &str = "languageClient/handleBufReadPost";

0 comments on commit 8ad1ad8

Please sign in to comment.