Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Introducing a Scopes Mapper to map from RA scopes to TextMate scopes with ↵ | Seivan Heidari | 2019-10-27 | 1 | -9/+9 |
| | | | | | | | | | | | | | | | | | | | | | | 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. | ||||
* | Refactor how themes are found in packages without relying on parsing JSONC. | Seivan Heidari | 2019-10-26 | 1 | -21/+17 |
| | | | | | However, there is still an issue where themes could have been defined in JSONC - but so far with testing very few of them actually do. The issue was in loading packages and now we're letting VSCode tackle that. Fix: https://github.com/rust-analyzer/rust-analyzer/pull/2061#discussion_r339015610 | ||||
* | Making it clear we're using default settings. | Seivan Heidari | 2019-10-24 | 1 | -11/+7 |
| | |||||
* | Fixing linting issues, but also hides failures. Has to be a better approach ↵ | Seivan Heidari | 2019-10-24 | 1 | -3/+3 |
| | | | | to error handling. | ||||
* | Only loading `tokenColorCustomizations` once. | Seivan Heidari | 2019-10-24 | 1 | -4/+4 |
| | |||||
* | Proof of concept theming and 'tokenColorCustomizations' support. | Seivan Heidari | 2019-10-24 | 1 | -0/+142 |