Skip to content

Adds nesting syntax highlighting for body of @support at rule. #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jan 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
71 changes: 31 additions & 40 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,33 @@
# Change Log
# Changelog

All notable changes to the "CSS Nesting Syntax Highlighting" extension will be documented in this file.
All notable changes to this project will be documented in this file.

## v0.1.1
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

_2024-08-25_
## [0.2.0] - 2025-01-06

### Modified
### Added

- Updated `README.md` with Table of Contents and better organization.
- Added nesting syntax highlighting for body of `@support` rule.

## v0.1.0
### Changed

_2024-03-15_
- Updated CHANGELOG.md to follow formatting set by [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).

### Modified
## [0.1.1] - 2024-08-25

- Changed `package.json` vscode engine to v1.84.0 and above to allow users on older versions to use the extension.
### Changed

- Updated `README.md` with Table of Contents and better organization.

## [0.1.0] - 2024-03-15

## v0.0.9
### Changed

- Changed `package.json` vscode engine to v1.84.0 and above to allow users on older versions to use the extension.

_2024-02-24_
## [0.0.9] - 2024-02-24

### Added

Expand All @@ -42,9 +49,7 @@ _2024-02-24_
}
```

## v0.0.8

_2024-02-22_
## [0.0.8] - 2024-02-22

### Added

Expand All @@ -57,17 +62,13 @@ _2024-02-22_
}
```

## v0.0.7

_2024-02-22_
## [0.0.7] - 2024-02-22

### Modified
### Changed

- Revert package.json language keyword to lowercase as extension doesn't work if it is uppercase.

## v0.0.6

_2024-02-22_
## [0.0.6] - 2024-02-22

### Added

Expand All @@ -83,25 +84,19 @@ _2024-02-22_
@media only screen and (max-width: calc( var(--size) * 1rem)) {}
```

## v0.0.5

_2024-02-21_
## [0.0.5] - 2024-02-21

### Added

- Added note to reload VSCode after installing this extension.

## v0.0.4
## [0.0.4] - 2024-02-19

_2024-02-19_

### Modified
### Changed

- Added border to logo image for contrast on dark backgrounds.

## v0.0.3

_2024-02-19_
## [0.0.3] - 2024-02-19

### Added

Expand All @@ -113,27 +108,23 @@ _2024-02-19_
- Added extension's logo image.
- Added `.prettierrc` file for formatting json with tabs.

### Modified
### Changed

- Updated demo CSS.
- Updated other CSS for review and testing.

### Removed

- Remove `&` from invalid punctuation so it can be used as a CSS nesting selector.
- Removed `&` from invalid punctuation so it can be used as a CSS nesting selector.
- Removed `language-configuration.json` and package.json's language contribution block pointing to it.

## v0.0.2

_2024-02-17_
## [0.0.2] - 2024-02-17

### Added

- Added demo CSS files for testing and review.

## v0.0.1

_2024-02-16_
## [0.0.1] - 2024-02-16

### Added

Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "css-nesting-syntax-highlighting",
"displayName": "CSS Nesting Syntax Highlighting",
"description": "Updates VSCode's CSS TextMate rules to add CSS Nesting",
"version": "0.1.1",
"version": "0.2.0",
"icon": "images/css-nesting-syntax-highlighting-logo.png",
"publisher": "jacobcassidy",
"bugs": {
Expand Down Expand Up @@ -49,6 +49,7 @@
"isPreReleaseVersion": false,
"hasPreReleaseVersion": false,
"installedTimestamp": 1710536983258,
"pinned": false
"pinned": false,
"size": 923271
}
}
3 changes: 3 additions & 0 deletions syntaxes/css.tmLanguage.json
Original file line number Diff line number Diff line change
Expand Up @@ -557,6 +557,9 @@
},
"name": "meta.at-rule.supports.body.css",
"patterns": [
{
"include": "#nesting-at-rules"
},
{
"include": "$self"
}
Expand Down