rust/editors/code/src
Seivan Heidari 0ddf47a7ab Introducing a Scopes Mapper to map from RA scopes to TextMate scopes with fallbacks.
Current scopes defined:
```
    ['keyword.unsafe', ['storage.modifier', 'keyword.other', 'keyword.control']],
    ['function', ['entity.name.function']],
    ['parameter', ['variable.parameter']],
    ['type', ['entity.name.type']],
    ['builtin', ['variable.language', 'support.type', 'support.type']],
    ['text', ['string', 'string.quoted', 'string.regexp']],
    ['attribute', ['keyword']],
    ['literal', ['string', 'string.quoted', 'string.regexp']],
    ['macro', ['support.other']],
    ['variable.mut', ['variable']],
    ['field', ['variable.object.property']],
    ['module', ['entity.name.section']]
```

Need to complement with further fallbacks as some themes fail.
2019-10-27 17:57:11 +01:00
..
commands Merge #1980 2019-10-23 11:13:04 +00:00
events Allow syntax tree to update when changing files 2019-03-03 22:03:37 +02:00
notifications Run prettier on all files 2018-10-08 22:38:33 +01:00
test Fix tests 2019-09-27 17:33:14 -04:00
utils Fix 2019-09-27 20:02:51 -04:00
config.ts Introducing a Scopes Mapper to map from RA scopes to TextMate scopes with fallbacks. 2019-10-27 17:57:11 +01:00
extension.ts Proof of concept theming and 'tokenColorCustomizations' support. 2019-10-24 17:25:23 +02:00
highlighting.ts Introducing a Scopes Mapper to map from RA scopes to TextMate scopes with fallbacks. 2019-10-27 17:57:11 +01:00
scopes_mapper.ts Introducing a Scopes Mapper to map from RA scopes to TextMate scopes with fallbacks. 2019-10-27 17:57:11 +01:00
scopes.ts Introducing a Scopes Mapper to map from RA scopes to TextMate scopes with fallbacks. 2019-10-27 17:57:11 +01:00
server.ts add option to disable notify 2019-09-06 17:21:29 +03:00