diff options
author | w0rp <w0rp@users.noreply.github.com> | 2018-09-11 16:16:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-11 16:16:18 +0100 |
commit | 78af99c2566ef8fed443ce253e0de9323b9e5043 (patch) | |
tree | f158b3cdeaca370e40da0cac2d7acee0f4b7eae3 /autoload | |
parent | 99e9417ef901824200040c6a2d3e84f2e0ff4b8e (diff) | |
parent | 44070d8a455bdea52cc235d8ed68c5945ec3ba4a (diff) | |
download | ale-78af99c2566ef8fed443ce253e0de9323b9e5043.zip |
Merge pull request #1905 from ngavalas/tsserver-classname-fix
Fix tsserver `className` responses
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' |