Comparing version 0.0.9 to 0.0.11
@@ -13,3 +13,3 @@ // A launch configuration that launches the extension inside a new window | ||
"args": [ | ||
"--extensionDevelopmentPath=${workspaceFolder}/test", | ||
"--extensionDevelopmentPath=${workspaceFolder}", | ||
] | ||
@@ -16,0 +16,0 @@ } |
@@ -5,2 +5,4 @@ # pustota | ||
[Preview online](https://vscode.dev/editor/theme/sobolevn.pustota) on `vscode.dev`! | ||
Core features: | ||
@@ -7,0 +9,0 @@ - Minimalistic |
@@ -7,2 +7,11 @@ # Changelog | ||
## 0.0.11 | ||
- Fixes old legacy Python builtins not highlighted when used as function names | ||
## 0.0.10 | ||
- Fixes `${}` highlight in JS / TS | ||
- Fixes last char highlight when typing a string without ending quote in JS / TS | ||
## 0.0.9 | ||
@@ -9,0 +18,0 @@ |
@@ -5,3 +5,3 @@ { | ||
"description": "Minimalistic VSCode theme inspired by old-fashioned hobbies", | ||
"version": "0.0.9", | ||
"version": "0.0.11", | ||
"scripts": { | ||
@@ -8,0 +8,0 @@ "package": "vsce package", |
@@ -5,2 +5,5 @@ import { Binder } from './binder'; | ||
const value = 'as' | ||
const subst = `a ${'b' + value + 'a'} b` | ||
export class Bot { | ||
@@ -7,0 +10,0 @@ |
@@ -299,2 +299,4 @@ { | ||
// JS: | ||
"string.quoted invalid.illegal.newline", // in-progress strings | ||
// Markdown: | ||
@@ -386,2 +388,3 @@ "markup.quote meta.paragraph", | ||
"meta.function.python support.function", | ||
"meta.function.python variable.legacy", // old names used as functions | ||
// Rust: | ||
@@ -474,2 +477,4 @@ "meta.macro.rules entity.name.function.macro.rust", | ||
// JS: | ||
"string.template meta.template", // expressions inside `${}` | ||
// TS: | ||
@@ -476,0 +481,0 @@ "meta.type.annotation entity.name.type", |
Sorry, the diff of this file is not supported yet
3932977
1544