Skip to content

Commit 0f8f9ce

Browse files
committed
Bump VSCode engine to v1.75.1
1 parent 5ef0ff7 commit 0f8f9ce

File tree

3 files changed

+20
-17
lines changed

3 files changed

+20
-17
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ The changelog of the TexLab language server can be found [here](https://github.c
66
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
77
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
88

9+
## [Unreleased]
10+
11+
### Changed
12+
13+
- Bump minimum VSCode engine version to v1.75.1
14+
915
## [5.23.1] - 2025-06-24
1016

1117
### Changed

package-lock.json

Lines changed: 10 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"url": "https://github.com/latex-lsp/texlab-vscode/issues"
1515
},
1616
"engines": {
17-
"vscode": "^1.67.0"
17+
"vscode": "^1.75.1"
1818
},
1919
"main": "./dist/extension.js",
2020
"scripts": {
@@ -29,7 +29,7 @@
2929
"@eslint/js": "^9.29.0",
3030
"@types/eslint__js": "^8.42.3",
3131
"@types/node": "22.x",
32-
"@types/vscode": "~1.67.0",
32+
"@types/vscode": "1.75.1",
3333
"eslint": "^9.29.0",
3434
"prettier": "^3.5.3",
3535
"ts-loader": "^9.5.2",
@@ -63,10 +63,6 @@
6363
"description": "Continuous Integration"
6464
}
6565
],
66-
"activationEvents": [
67-
"onLanguage:latex",
68-
"onLanguage:bibtex"
69-
],
7066
"contributes": {
7167
"configuration": [
7268
{
@@ -338,11 +334,11 @@
338334
],
339335
"configurationDefaults": {
340336
"[latex]": {
341-
"editor.wordBasedSuggestions": false,
337+
"editor.wordBasedSuggestions": "off",
342338
"editor.suggest.snippetsPreventQuickSuggestions": false
343339
},
344340
"[bibtex]": {
345-
"editor.wordBasedSuggestions": false,
341+
"editor.wordBasedSuggestions": "off",
346342
"editor.suggest.snippetsPreventQuickSuggestions": false
347343
}
348344
},

0 commit comments

Comments
 (0)