From 529120dd1a693b02451ad2dcfca34c74b4dc55f5 Mon Sep 17 00:00:00 2001 From: Michael Lyons Date: Sat, 11 Apr 2026 16:06:07 -0400 Subject: [PATCH 1/3] Bump C# extension to `version: 2` See https://github.com/sublimehq/Packages/pull/4504 --- .../embed/C# (for PowerShell).sublime-syntax | 27 +++---------------- 1 file changed, 4 insertions(+), 23 deletions(-) diff --git a/syntax/embed/C# (for PowerShell).sublime-syntax b/syntax/embed/C# (for PowerShell).sublime-syntax index 77977fd..4eb40f2 100644 --- a/syntax/embed/C# (for PowerShell).sublime-syntax +++ b/syntax/embed/C# (for PowerShell).sublime-syntax @@ -1,40 +1,21 @@ %YAML 1.2 --- scope: source.cs.embedded.powershell -# version: 2 +version: 2 hidden: true extends: Packages/C#/C#.sublime-syntax contexts: - inside_triple_quoted_raw_string_literal_syntax: - # <=ST4202 - - meta_include_prototype: false - - include: immediately-pop - - inside_long_string_syntax: - # <=ST4202 - - meta_include_prototype: false - - include: immediately-pop - - inside_long_format_string_syntax: - # <=ST4202 - - meta_include_prototype: false - - include: immediately-pop - inside_triple_quoted_raw_string_syntax: - meta_include_prototype: false - - include: immediately-pop + - include: immediately_pop inside_verbatim_string_syntax: - meta_include_prototype: false - - include: immediately-pop + - include: immediately_pop inside_verbatim_format_string_syntax: - meta_include_prototype: false - - include: immediately-pop - - immediately-pop: - - match: '' - pop: 1 + - include: immediately_pop From 9fb4e5d42b5c2439e2e18743a3d50bea388c6ac5 Mon Sep 17 00:00:00 2001 From: Michael Lyons Date: Sat, 11 Apr 2026 16:07:18 -0400 Subject: [PATCH 2/3] Bump CI checkout --- .github/workflows/syntax.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/syntax.yml b/.github/workflows/syntax.yml index 7531ebe..89aa815 100644 --- a/.github/workflows/syntax.yml +++ b/.github/workflows/syntax.yml @@ -39,7 +39,7 @@ jobs: - build: 4107 packages: binary steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: SublimeText/syntax-test-action@v2 with: build: ${{ matrix.build }} From 0840724d7df11f8f7d5b256fed6ad6a17e63c83e Mon Sep 17 00:00:00 2001 From: deathaxe Date: Sun, 12 Apr 2026 08:54:41 +0200 Subject: [PATCH 3/3] CI: Run tests using master, only --- .github/workflows/syntax.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/syntax.yml b/.github/workflows/syntax.yml index 89aa815..29618b3 100644 --- a/.github/workflows/syntax.yml +++ b/.github/workflows/syntax.yml @@ -34,10 +34,10 @@ jobs: include: - build: latest packages: master - - build: stable - packages: binary - - build: 4107 - packages: binary + # - build: stable + # packages: binary + # - build: 4107 + # packages: binary steps: - uses: actions/checkout@v6 - uses: SublimeText/syntax-test-action@v2