Skip to content

Commit

Permalink
Merge pull request #113 from zardoy/develop
Browse files Browse the repository at this point in the history
  • Loading branch information
zardoy authored Mar 10, 2023
2 parents 8e9e555 + b8fa504 commit f2296a7
Show file tree
Hide file tree
Showing 23 changed files with 508 additions and 137 deletions.
13 changes: 12 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,18 @@
"type": "node",
"request": "attach",
"restart": true,
"port": 9229,
"port": 9223,
"sourceMaps": true,
"outFiles": [
"${workspaceFolder}/out/**/*.js"
],
},
{
"name": "Attach to Vue Semantic Server",
"type": "node",
"request": "attach",
"restart": true,
"port": 6009,
"sourceMaps": true,
"outFiles": [
"${workspaceFolder}/out/**/*.js"
Expand Down
10 changes: 10 additions & 0 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ TOC:
- [Top Features](#top-features)
- [Minor Useful Features](#minor-useful-features)
- [Method Snippets](#method-snippets)
- [Volar (Vue) support](#vue-support)
- [Auto Imports](#auto-imports)
- [Type Driven Completions](#type-driven-completions)
- [Rename Features](#rename-features)
Expand Down Expand Up @@ -72,6 +73,15 @@ usersList.map // -> usersList.map((user) => )

Filter out completions that start with different casing.

### Tuple Type Signatures

(*disabled by default*, but super recommended)

Completions and signature help in tuple literal expressions & destructure.

<img src="media/tuple-signature-1.png" width="380">
<img src="media/tuple-signature-2.png" width="400">

### Remove Definition From References

(*enabled by default*)
Expand Down
Binary file modified media/non-function-methods.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added media/tuple-signature-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added media/tuple-signature-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -117,14 +117,14 @@
"fs-extra": "^10.1.0",
"got": "^12.5.3",
"got-cjs": "npm:got@^11.x",
"tsm": "^2.3.0",
"type-fest": "^2.13.1",
"typed-jsonfile": "^0.2.1",
"typescript": "^4.9.3",
"vite": "^4.1.1",
"vitest": "^0.26.0",
"vitest-environment-ts-plugin": "./vitest-environment-ts-plugin",
"vscode-manifest": "^0.0.4",
"tsm": "^2.3.0"
"vscode-manifest": "^0.0.4"
},
"pnpm": {
"overrides": {
Expand All @@ -137,8 +137,9 @@
"@types/lodash": "^4.14.182",
"@types/mocha": "^9.1.1",
"@types/pluralize": "^0.0.29",
"@volar/language-server": "^1.0.24",
"@volar/language-service": "^1.0.24",
"@volar/language-server": "1.3.0-alpha.3",
"@volar/language-service": "1.3.0-alpha.3",
"@volar/vue-language-core": "^1.2.0-patch.2",
"@vscode/emmet-helper": "^2.8.4",
"@vscode/test-electron": "^2.1.5",
"@zardoy/utils": "^0.0.9",
Expand Down
Loading

0 comments on commit f2296a7

Please sign in to comment.