atom / language-csharp

C# language support for Atom
Other
62 stars 53 forks source link

[c#] No syntax colors in C# for usings out of namespace #45

Closed aeschli closed 8 years ago

aeschli commented 8 years ago

From @vbfox on December 1, 2015 9:8

2015-12-01 09_59_56-searchkey cs - rfq-hub - visual studio code

In the following code :

using System.Linq;

namespace MyNamespaceIsFoo
{
    using System;

    public class SearchKey
    {
    }
}

using System get colored correctly but using System.Linq isn't.

Copied from original issue: Microsoft/vscode#848

aeschli commented 8 years ago

Same problem in Atom image

damieng commented 8 years ago

Is now fixed I think through a number of commits;

image