Tell Vim omnicompletion that tsserver matches are case-insensitive

This commit is contained in:
w0rp 2017-08-04 13:35:02 +01:00
parent d1023e9c2c
commit 9ac74c44fe
2 changed files with 5 additions and 2 deletions

View File

@ -162,6 +162,7 @@ function! ale#completion#ParseTSServerCompletionEntryDetails(response) abort
call add(l:results, {
\ 'word': l:suggestion.name,
\ 'kind': l:kind,
\ 'icase': 1,
\ 'menu': join(l:displayParts, ''),
\ 'info': join(l:documentationParts, ''),
\})

View File

@ -29,13 +29,15 @@ Execute(TypeScript completion details responses should be parsed correctly):
\ 'word': 'abc',
\ 'menu': '(property) Foo.abc: number',
\ 'info': '',
\ 'kind': 'f'
\ 'kind': 'f',
\ 'icase': 1,
\ },
\ {
\ 'word': 'def',
\ 'menu': '(property) Foo.def: number',
\ 'info': 'foo bar baz',
\ 'kind': 'f'
\ 'kind': 'f',
\ 'icase': 1,
\ },
\ ],
\ ale#completion#ParseTSServerCompletionEntryDetails({