Skip to content

Commit

Permalink
Fix namespace icon
Browse files Browse the repository at this point in the history
Namespace was set to Text kind, but it should be set to Module kind like before
  • Loading branch information
nohwnd committed Sep 11, 2020
1 parent 007d057 commit 2c7c2ed
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public class CompletionService :
{ WellKnownTags.Keyword, CompletionItemKind.Keyword },
{ WellKnownTags.Label, CompletionItemKind.Text },
{ WellKnownTags.Local, CompletionItemKind.Variable },
{ WellKnownTags.Namespace, CompletionItemKind.Text },
{ WellKnownTags.Namespace, CompletionItemKind.Module },
{ WellKnownTags.Method, CompletionItemKind.Method },
{ WellKnownTags.Module, CompletionItemKind.Module },
{ WellKnownTags.Operator, CompletionItemKind.Operator },
Expand Down

0 comments on commit 2c7c2ed

Please sign in to comment.