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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- **Line Decorations**: Duration appears as ghost text at the end of the cursor line (e.g., `1.23s (self: 45ms)`).
- **Hover Details**: Hover near the ghost text to see SOQL/DML counts, row counts, and exception info.
- **Total Duration**: First line shows total log execution time.
- **Syntax Highlighting**: Apex debug log files are automatically recognized and syntax highlighted for improved readability.

### Changed

Expand Down
1 change: 1 addition & 0 deletions lana/.vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
// inlcude only the following in the extension
!.vscodeignore
!out/
!syntaxes/
!package.json
!CHANGELOG.md
!README.md
Expand Down
7 changes: 7 additions & 0 deletions lana/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,13 @@
"icon": "./certinia-icon-color.png"
}
],
"grammars": [
{
"language": "apexlog",
"scopeName": "source.apexlog",
"path": "./syntaxes/apexlog.tmLanguage.json"
}
],
"languages": [
{
"id": "apexlog",
Expand Down
4 changes: 4 additions & 0 deletions lana/syntaxes/apexlog.tmLanguage.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"scopeName": "source.apexlog",
"patterns": [{ "include": "text.log" }]
}
Loading