Show description of autoimport action for tsserver

This commit is contained in:
Jerko Steiner
2019-09-20 13:05:00 +07:00
parent e3784c4c4e
commit f5e44415e8
2 changed files with 7 additions and 3 deletions

View File

@@ -314,6 +314,10 @@ function! ale#completion#ParseTSServerCompletionEntryDetails(response) abort
for l:suggestion in a:response.body
let l:displayParts = []
for l:action in get(l:suggestion, 'codeActions', [])
call add(l:displayParts, l:action.description . ' ')
endfor
for l:part in l:suggestion.displayParts
call add(l:displayParts, l:part.text)
endfor

View File

@@ -122,13 +122,13 @@ Execute(Entries without details should be included in the responses):
\ [
\ {
\ 'word': 'abc',
\ 'menu': '(property) Foo.abc: number',
\ 'menu': 'import { def } from "./Foo"; (property) Foo.abc: number',
\ 'info': '',
\ 'kind': 'f',
\ 'icase': 1,
\ 'user_data': json_encode({
\ 'codeActions': [{
\ 'description': 'abc action',
\ 'description': 'import { def } from "./Foo";',
\ 'changes': [],
\ }],
\ }),
@@ -168,7 +168,7 @@ Execute(Entries without details should be included in the responses):
\ {'text': 'number'},
\ ],
\ 'codeActions': [{
\ 'description': 'abc action',
\ 'description': 'import { def } from "./Foo";',
\ 'changes': [],
\ }],
\ },