mirror of
https://github.com/dense-analysis/ale
synced 2025-02-16 20:26:54 +00:00
fix tsserver className parsing
This commit is contained in:
parent
99e9417ef9
commit
44070d8a45
@ -264,7 +264,7 @@ function! ale#completion#ParseTSServerCompletionEntryDetails(response) abort
|
||||
call add(l:documentationParts, l:part.text)
|
||||
endfor
|
||||
|
||||
if l:suggestion.kind is# 'clasName'
|
||||
if l:suggestion.kind is# 'className'
|
||||
let l:kind = 'f'
|
||||
elseif l:suggestion.kind is# 'parameterName'
|
||||
let l:kind = 'f'
|
||||
|
@ -32,6 +32,13 @@ Execute(TypeScript completion details responses should be parsed correctly):
|
||||
\ 'kind': 'f',
|
||||
\ 'icase': 1,
|
||||
\ },
|
||||
\ {
|
||||
\ 'word': 'ghi',
|
||||
\ 'menu': '(class) Foo',
|
||||
\ 'info': '',
|
||||
\ 'kind': 'f',
|
||||
\ 'icase': 1,
|
||||
\ },
|
||||
\ ],
|
||||
\ ale#completion#ParseTSServerCompletionEntryDetails({
|
||||
\ 'body': [
|
||||
@ -74,6 +81,17 @@ Execute(TypeScript completion details responses should be parsed correctly):
|
||||
\ {'text': 'baz'},
|
||||
\ ],
|
||||
\ },
|
||||
\ {
|
||||
\ 'name': 'ghi',
|
||||
\ 'kind': 'className',
|
||||
\ 'displayParts': [
|
||||
\ {'text': '('},
|
||||
\ {'text': 'class'},
|
||||
\ {'text': ')'},
|
||||
\ {'text': ' '},
|
||||
\ {'text': 'Foo'},
|
||||
\ ],
|
||||
\ },
|
||||
\ ],
|
||||
\})
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user