Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: python language features #991

Open
wants to merge 28 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 9 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
13a0fb7
feat: python language features
May 11, 2024
b577b96
fix: workspace init fail
May 23, 2024
9bdc08d
fix: doc sync & signature help
May 23, 2024
b8735e2
fix: browser build problem
jingjiajie May 24, 2024
ec49b40
fix: dynamic menu for python
jingjiajie Jun 3, 2024
4c62d85
support browser
Jun 5, 2024
44bf91a
Merge branch 'main' into python_lsp
jingjiajie Jun 17, 2024
583aa51
fix: code zone error for embedded code
jingjiajie Jun 18, 2024
24dba01
fix: ut hanging
jingjiajie Jun 19, 2024
01280f8
fix: copyright, getFoldingBlock param struct
jingjiajie Jun 26, 2024
61ae538
Merge branch 'main' into python_lsp
jingjiajie Jun 26, 2024
d4efe20
fix: build copy folder error
jingjiajie Jul 2, 2024
594c2fc
fix: copy file issue, bug fixes
jingjiajie Jul 4, 2024
805cb51
fix: require minimum engine 1.89
Jul 16, 2024
a1c205f
Merge branch 'main' into python_lsp
jingjiajie Jul 16, 2024
5cb31c1
fix: triggerCharacter is undefined
jingjiajie Jul 22, 2024
3d86770
fix: npm run format
Jul 22, 2024
bb0d46d
fix: unexpected indent error for comment only code
Jul 26, 2024
4c303bc
fix: proc python in custom region
jingjiajie Jul 28, 2024
92e400c
Merge branch 'main' into python_lsp
jingjiajie Jul 28, 2024
9b4f357
fix: run region in python
Jul 29, 2024
cf5615f
fix: python features hidden when in custom region
Aug 16, 2024
2f94357
fix: submit association after proc python
Aug 21, 2024
9b6593f
Merge branch 'main' into python_lsp
jingjiajie Aug 21, 2024
8038f3a
Merge branch 'main' into python_lsp
jingjiajie Sep 3, 2024
89cc1dd
support i alias of interactive, fix codezone bugs
Sep 3, 2024
ecc5423
fix: endsubmit completion help, single line python
Sep 11, 2024
492b8d8
fix: completion after comment & foldingRange crash
Sep 27, 2024
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
3 changes: 1 addition & 2 deletions client/src/commands/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,7 @@ async function getSelectedRegions(
"sas/getFoldingBlock",
{
textDocument: { uri: window.activeTextEditor.document.uri.toString() },
line,
col,
position: { line, col },
jingjiajie marked this conversation as resolved.
Show resolved Hide resolved
},
);
if (block) {
Expand Down
75 changes: 75 additions & 0 deletions package-lock.json

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

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -1083,6 +1083,7 @@
"locale": "npx @vscode/l10n-dev export -o ./l10n ./client/src && node ./tools/locale.mjs"
},
"devDependencies": {
"@sprout2000/esbuild-copy-plugin": "^1.1.14",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
Expand All @@ -1091,6 +1092,7 @@
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.11.0",
"@vscode/l10n-dev": "^0.0.35",
"buffer": "6.0.3",
"chai": "^4.4.1",
"concurrently": "^8.2.2",
"esbuild": "^0.21.4",
Expand Down
Loading