atom / language-csharp

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

Nested namespaces are not highlighted #41

Closed jackwilsdon closed 8 years ago

jackwilsdon commented 8 years ago

Nested namespaces are not highlighted correctly.

screen shot 2015-10-03 at 17 46 59

Example code:

using System;

namespace ECS {
    namespace Exceptions {
        public class ComponentAlreadyPresentException : Exception {

        }
    }
}

Looks like GitHub's syntax highlighter doesn't support them either.