Skip to content

Commit 85bbf7b

Browse files
Merge branch 'release/0.14.0'
2 parents 74b3cac + 632dd3c commit 85bbf7b

File tree

4 files changed

+24
-2
lines changed

4 files changed

+24
-2
lines changed

CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,19 @@
88

99
<!--lint disable no-duplicate-headings no-duplicate-headings-in-section-->
1010

11+
# 0.14.0
12+
13+
![Release Date: 2020-06-16](https://img.shields.io/static/v1.svg?style=flat-square&label=Release%20Date&message=2020-06-16&colorA=4c566a&colorB=88c0d0) [![Project Board](https://img.shields.io/static/v1.svg?style=flat-square&label=Project%20Board&message=0.14.0&colorA=4c566a&colorB=88c0d0)](https://github.com/arcticicestudio/nord-visual-studio-code/projects/23) [![Milestone](https://img.shields.io/static/v1.svg?style=flat-square&label=Milestone&message=0.14.0&colorA=4c566a&colorB=88c0d0)](https://github.com/arcticicestudio/nord-visual-studio-code/milestone/19)
14+
15+
## Features
16+
17+
### Syntax
18+
19+
**Adaption and activation of semantic highlighting**#172#173 (⊶ e05a9997) by [@aeschli][gh-user-aeschli]
20+
[Visual Studio Code version 1.44 introduced support][vsc-rln-1.44-sht_api] for [semantic highlighting][vscode-docs-semantic_hl] that allows to assign colors and styles to tokens. _Semantic highlighting_ enriches syntax coloring based on symbol information from the language service, which has more complete understanding of the project so the coloring changes appear once the language server is running and has computed the semantic tokens.
21+
The feature has been tested for some weeks and worked out-of-the-box without the need to change or add specific matchers or rules.
22+
See the [semantic highlighting guide for themes][vscode-docs-semantic_hl_guide#theme] and [Github wiki][gh-wiki-shl] for more details.
23+
1124
# 0.13.0
1225

1326
![Release Date: 2019-12-23](https://img.shields.io/static/v1.svg?style=flat-square&label=Release%20Date&message=2019-12-23&colorA=4c566a&colorB=88c0d0) [![Project Board](https://img.shields.io/static/v1.svg?style=flat-square&label=Project%20Board&message=0.13.0&colorA=4c566a&colorB=88c0d0)](https://github.com/arcticicestudio/nord-visual-studio-code/projects/22) [![Milestone](https://img.shields.io/static/v1.svg?style=flat-square&label=Milestone&message=0.13.0&colorA=4c566a&colorB=88c0d0)](https://github.com/arcticicestudio/nord-visual-studio-code/milestone/18)
@@ -1008,3 +1021,11 @@ Detailed information about features, supported languages and install instruction
10081021
[microsoft/vscode@f450e0b1fe3]: https://github.com/microsoft/vscode/blame/f450e0b1fe3ac26ce6bf8367ff1bd60fb1387a7d/src/vs/platform/theme/common/colorRegistry.ts#L154
10091022
[microsoft/vscode#26298]: github.com/microsoft/vscode/issues/26298
10101023
[vscode-rel-1.13.0]: https://code.visualstudio.com/updates/v1_13
1024+
1025+
<!-- v0.14.0 -->
1026+
1027+
[gh-user-aeschli]: https://github.com/aeschli
1028+
[gh-wiki-shl]: https://github.com/microsoft/vscode/wiki/Semantic-Highlighting-Overview
1029+
[vsc-rln-1.44-sht_api]: https://code.visualstudio.com/updates/v1_44#_semantic-tokens-provider-api
1030+
[vscode-docs-semantic_hl_guide#theme]: https://code.visualstudio.com/api/language-extensions/semantic-highlight-guide#theming
1031+
[vscode-docs-semantic_hl]: https://code.visualstudio.com/docs/getstarted/themes#_semantic-highlighting

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "nord-visual-studio-code",
33
"displayName": "Nord",
44
"description": "An arctic, north-bluish clean and elegant Visual Studio Code theme.",
5-
"version": "0.13.0",
5+
"version": "0.14.0",
66
"publisher": "arcticicestudio",
77
"author": {
88
"name": "Arctic Ice Studio",

themes/nord-color-theme.json

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "Nord",
33
"type": "dark",
4+
"semanticHighlighting": true,
45
"colors": {
56
"focusBorder": "#3b4252",
67
"foreground": "#d8dee9",

0 commit comments

Comments
 (0)