Skip to content
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
3 changes: 3 additions & 0 deletions .devcontainer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
#### Plugin Marketplace
- **`marketplace.json` schema fix** — changed all 11 plugin `source` fields from bare names (e.g., `"codeforge-lsp"`) to relative paths (`"./plugins/codeforge-lsp"`) so `claude plugin marketplace add` passes schema validation and all plugins register correctly

#### ChromaTerm
- **Regex lookbehinds** — replaced alternation inside lookbehinds (`(?<=[\s(]|^)` and `(?<=commit |merge |...)`) with non-capturing groups containing individual lookbehinds (`(?:(?<=[\s(])|^)` and `(?:(?<=commit )|(?<=merge )|...)`) for PCRE2 compatibility

### Removed

#### VS Code Extensions
Expand Down
4 changes: 2 additions & 2 deletions .devcontainer/features/chromaterm/chromaterm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ rules:
# File paths with optional line numbers (e.g., src/main.py:42)
# Covers common extensions for languages used in development
- description: File paths with line numbers
regex: '(?<=[\s(]|^)([a-zA-Z0-9_./-]+\.(py|ts|tsx|js|jsx|md|json|yml|yaml|toml|sh|rs|go|sql|css|html|svelte))(:(\d+))?'
regex: '(?:(?<=[\s(])|^)([a-zA-Z0-9_./-]+\.(py|ts|tsx|js|jsx|md|json|yml|yaml|toml|sh|rs|go|sql|css|html|svelte))(:(\d+))?'
color:
1: f.file_purple underline
4: f.line_gray
Expand All @@ -31,5 +31,5 @@ rules:

# Git short commit hashes (7-12 hex chars)
- description: Git commit hashes
regex: '(?<=commit |merge |pick |revert |fixup )[0-9a-f]{7,40}'
regex: '(?:(?<=commit )|(?<=merge )|(?<=pick )|(?<=revert )|(?<=fixup ))[0-9a-f]{7,40}'
color: f.hash_yellow