Skip to content

Commit

Permalink
feat: python language features (#991)
Browse files Browse the repository at this point in the history
Signed-off-by: Jonas(Jiajie) Jing <[email protected]>
  • Loading branch information
jingjiajie authored Nov 27, 2024
1 parent 4ebedf0 commit ace47fd
Show file tree
Hide file tree
Showing 28 changed files with 2,228 additions and 232 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [v1.12.0] - 2024-11-25

### Changed

- Required VS Code version 1.89 at minimum

### Added

- Added username and password support for SSH connection type ([#1126](https://github.com/sassoftware/vscode-sas-extension/pull/1126))
Expand Down
62 changes: 36 additions & 26 deletions client/package-lock.json

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

4 changes: 2 additions & 2 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"version": "0.0.1",
"publisher": "SAS",
"engines": {
"vscode": "^1.82.0"
"vscode": "^1.89.0"
},
"dependencies": {
"ag-grid-community": "^32.3.2",
Expand All @@ -17,7 +17,7 @@
"react-dom": "^18.3.1",
"ssh2": "^1.15.0",
"uuid": "^11.0.2",
"vscode-languageclient": "^9.0.1",
"vscode-languageclient": "^10.0.0-next.2",
"zustand": "^5.0.0"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion client/src/browser/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ function createWorkerLanguageClient(
return new LanguageClient(
"sas-lsp",
"SAS Language Server",
clientOptions,
worker,
clientOptions,
);
}

Expand Down
3 changes: 1 addition & 2 deletions client/src/commands/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@ async function getSelectedRegions(
"sas/getFoldingBlock",
{
textDocument: { uri: window.activeTextEditor.document.uri.toString() },
line,
col,
position: { line, col },
},
);
if (block) {
Expand Down
67 changes: 66 additions & 1 deletion package-lock.json

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

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"license": "Apache-2.0",
"icon": "icons/sas.png",
"engines": {
"vscode": "^1.82.0"
"vscode": "^1.89.0"
},
"activationEvents": [
"onWebviewPanel:SASResultPanel",
Expand Down Expand Up @@ -1275,6 +1275,7 @@
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"@vscode/l10n-dev": "^0.0.35",
"buffer": "6.0.3",
"chai": "^4.4.1",
"concurrently": "^9.0.1",
"esbuild": "^0.24.0",
Expand Down
Loading

0 comments on commit ace47fd

Please sign in to comment.