#3442 Fix code fix clangd issue

This commit is contained in:
Dalius Dobravolskas 2020-11-21 01:26:16 +00:00 committed by w0rp
parent 7c04ee5c20
commit d0b5909fd8
No known key found for this signature in database
GPG key ID: 0FC1ECAA8C81CD83
2 changed files with 3 additions and 3 deletions

View file

@ -379,7 +379,7 @@ function! s:OnReady(
\ }, \ },
\ 'end': { \ 'end': {
\ 'line': l:nearest_error.end_lnum - 1, \ 'line': l:nearest_error.end_lnum - 1,
\ 'character': l:nearest_error.end_col - 1, \ 'character': l:nearest_error.end_col,
\ }, \ },
\ }, \ },
\ }, \ },

View file

@ -508,7 +508,7 @@ Execute(LSP code action requests should be sent):
\ [ \ [
\ [0, 'textDocument/codeAction', { \ [0, 'textDocument/codeAction', {
\ 'context': { \ 'context': {
\ 'diagnostics': [{'range': {'end': {'character': 5, 'line': 1}, 'start': {'character': 4, 'line': 1}}, 'code': 2304, 'message': 'oops'}] \ 'diagnostics': [{'range': {'end': {'character': 6, 'line': 1}, 'start': {'character': 4, 'line': 1}}, 'code': 2304, 'message': 'oops'}]
\ }, \ },
\ 'range': {'end': {'character': 5, 'line': 1}, 'start': {'character': 4, 'line': 1}}, \ 'range': {'end': {'character': 5, 'line': 1}, 'start': {'character': 4, 'line': 1}},
\ 'textDocument': {'uri': ale#path#ToURI(expand('%:p'))} \ 'textDocument': {'uri': ale#path#ToURI(expand('%:p'))}
@ -540,7 +540,7 @@ Execute(LSP code action requests should be sent only for error with code):
\ [ \ [
\ [0, 'textDocument/codeAction', { \ [0, 'textDocument/codeAction', {
\ 'context': { \ 'context': {
\ 'diagnostics': [{'range': {'end': {'character': 5, 'line': 1}, 'start': {'character': 4, 'line': 1}}, 'code': 2304, 'message': 'oops'}] \ 'diagnostics': [{'range': {'end': {'character': 6, 'line': 1}, 'start': {'character': 4, 'line': 1}}, 'code': 2304, 'message': 'oops'}]
\ }, \ },
\ 'range': {'end': {'character': 5, 'line': 1}, 'start': {'character': 4, 'line': 1}}, \ 'range': {'end': {'character': 5, 'line': 1}, 'start': {'character': 4, 'line': 1}},
\ 'textDocument': {'uri': ale#path#ToURI(expand('%:p'))} \ 'textDocument': {'uri': ale#path#ToURI(expand('%:p'))}