diff options
author | Nick Gavalas <njg@fb.com> | 2018-09-10 18:47:04 -0400 |
---|---|---|
committer | Nick Gavalas <njg@fb.com> | 2018-09-11 10:56:58 -0400 |
commit | 44070d8a455bdea52cc235d8ed68c5945ec3ba4a (patch) | |
tree | f158b3cdeaca370e40da0cac2d7acee0f4b7eae3 /autoload | |
parent | 99e9417ef901824200040c6a2d3e84f2e0ff4b8e (diff) | |
download | ale-44070d8a455bdea52cc235d8ed68c5945ec3ba4a.zip |
fix tsserver className parsing
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale/completion.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/ale/completion.vim b/autoload/ale/completion.vim index bded12b1..e96774c3 100644 --- a/autoload/ale/completion.vim +++ b/autoload/ale/completion.vim @@ -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' |