Skip to content

Commit 26bb7c5

Browse files
Merge pull request #699 from Microsoft/permitWarningCompletions
Don't filter "warning" completions
2 parents a7e7ae4 + 015f63c commit 26bb7c5

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

typescript/listeners/completion.py

-3
Original file line numberDiff line numberDiff line change
@@ -132,9 +132,6 @@ def handle_completion_info(self, completions_resp):
132132
raw_completions = completions_resp["body"]
133133
if raw_completions:
134134
for raw_completion in raw_completions:
135-
# strip unrelated items
136-
if raw_completion["kind"] == "warning":
137-
continue
138135
name = raw_completion["name"]
139136
completion = (name + "\t" + raw_completion["kind"], name.replace("$", "\\$"))
140137
completions.append(completion)

0 commit comments

Comments
 (0)