fix(highlights): Add TSNamespace highlight

Start adding highlights for
     - C++
     - Rust (including other scoped_identifier/scoped_type_identifier fixes)
     - JS (only namespace_import)

Addresses #516
This commit is contained in:
Stephan Seitz 2020-09-22 23:01:19 +02:00 committed by Stephan Seitz
parent f5ac2b4a1a
commit 45397ebbd9
8 changed files with 46 additions and 12 deletions

View file

@ -30,6 +30,7 @@ hlmap["boolean"] = "TSBoolean"
hlmap["float"] = "TSFloat"
hlmap["annotation"] = "TSAnnotation"
hlmap["attribute"] = "TSAttribute"
hlmap["namespace"] = "TSNamespace"
-- Functions
hlmap["function"] = "TSFunction"