Skip to content

Commit

Permalink
release: v1.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
K-dizzled committed Jan 15, 2024
1 parent de1bf2d commit e798637
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 9 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Change Log

### 1.5.2
- Fix issue with double document symbol provider registration (@Alizter, [#9](https://github.com/JetBrains-Research/coqpilot/issues/9))

### 1.5.1
- Add support of the Grazie platform as an llm provider.

Expand Down
16 changes: 8 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"url": "https://github.com/K-dizzled/coqpilot"
},
"publisher": "JetBrains-Research",
"version": "1.5.1",
"version": "1.5.2",
"engines": {
"vscode": "^1.82.0"
},
Expand Down
4 changes: 4 additions & 0 deletions src/coqLspClient/coqLspClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ export class CoqLspClient extends LanguageClient {
middleware: {
handleDiagnostics: (uri, diagnostics, _next) => {
logger.debug(`Diagnostics received for file ${uri}: ${diagnostics.map((d) => d.message).join(", ")}`);
},
provideDocumentSymbols: (document, _token, _next) => {
logger.debug(`provideDocumentSymbols called for file ${document.uri}`);
return [];
}
}
};
Expand Down

0 comments on commit e798637

Please sign in to comment.