Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
65613f4
Spiritual successor to mcy/lsp.
christogav Apr 1, 2025
97ff9e0
Push package-lock.json.
christogav Apr 1, 2025
9e9308b
Fix: load buf modules not running on extension start.
christogav Apr 5, 2025
8f0f3f1
Merge branch 'main' into christogav/lsp
christogav Apr 8, 2025
8f93b86
Push package-lock.json
christogav Apr 8, 2025
228f12c
Fix missing semver types.
christogav Apr 8, 2025
40fd61e
npm run format
christogav Apr 8, 2025
08080b4
lint: rename files
christogav Apr 8, 2025
bd6d0b1
(es)lint: fixes
christogav Apr 8, 2025
9071ecf
Fix tests.
christogav Apr 8, 2025
5f99ba2
PR feedback:
christogav Apr 9, 2025
75bf1d2
Ensure specific version is found and used if set in config.
christogav Apr 9, 2025
15de155
Simplify testing - decouple some dependencies and intro stub/mocks.
christogav Apr 10, 2025
226374a
Tidy command descriptions.
christogav Apr 16, 2025
c32d2cc
If we can acquire a github token - use one to avoid being rate limite…
christogav Apr 24, 2025
d4fac39
Fix extension management of buf by path, version or attempt to find o…
christogav Apr 28, 2025
9372c76
Add warning when both buf.commandLine.path and buf.commandLine.versio…
christogav Apr 28, 2025
79f9bde
Move out command types to avoid circular dependency and simplify inde…
christogav Apr 28, 2025
8b79352
Remove commands from being exported in index.
christogav Apr 28, 2025
b6c8bd4
Support relative buf.commandLine.path.
christogav Apr 30, 2025
23acd03
Remove extra assertion failing - adds no value.
christogav Apr 30, 2025
faed790
Bump @vscode/test-electron to avoid installation issue found in https…
christogav May 1, 2025
4dbcae3
Merge branch 'main' into christogav/lsp
May 14, 2025
26605d8
Merge branch 'main' into christogav/lsp
christogav May 20, 2025
51892ae
Fix version handling per PR feedback.
christogav May 20, 2025
574902e
Remove `buf.remove` as no longer neccessary based on how we handle ve…
christogav May 20, 2025
65f950f
Bump version and improve the README.
christogav May 20, 2025
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 .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ node_modules
.vscode-test/
*.vsix
.env/
.user-data-dir-test
9 changes: 0 additions & 9 deletions .vscode-test.mjs

This file was deleted.

55 changes: 29 additions & 26 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,30 +5,33 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Run Extension",
"type": "extensionHost",
"request": "launch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": [
"${workspaceFolder}/out/**/*.js"
],
"preLaunchTask": "${defaultBuildTask}"
},
{
"name": "Extension Tests",
"type": "extensionHost",
"request": "launch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionTestsPath=${workspaceFolder}/out/test/suite/index"
],
"outFiles": [
"${workspaceFolder}/out/test/**/*.js"
],
"preLaunchTask": "${defaultBuildTask}"
}
]
{
"name": "Run Extension",
"type": "extensionHost",
"request": "launch",
"args": ["--disable-extensions", "--extensionDevelopmentPath=${workspaceFolder}"],
"outFiles": ["${workspaceFolder}/out/**/*.js"],
"preLaunchTask": "${defaultBuildTask}"
},
{
"name": "Extension Tests",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--disable-extensions",
"--profile-temp",
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionTestsPath=${workspaceFolder}/out/test/unit/index",
"--user-data-dir=${workspaceFolder}/extension/.user-data-dir-test",
"--timeout",
"999999"
],
"outFiles": ["${workspaceFolder}/out/test/**/*.js"],
"sourceMaps": true,
"smartStep": true,
"preLaunchTask": "npm: watch",
"cwd": "${workspaceFolder}/extension"
}
]
}
Loading