Skip to content

Commit a5b62d5

Browse files
committed
feat: add experimental commands (they may change in future) for selecting & going to special TS position
closes #33 It was extremely fun to explore & use! feat: add insane command for searching & inserting specific arguments from existing functions in file
1 parent 3690446 commit a5b62d5

File tree

6 files changed

+304
-236
lines changed

6 files changed

+304
-236
lines changed

package.json

Lines changed: 27 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,26 @@
1616
"command": "removeFunctionArgumentsTypesInSelection",
1717
"title": "Remove Function Arguments Types in Selection",
1818
"category": "TS Essentials"
19+
},
20+
{
21+
"command": "goToEndOfValue",
22+
"title": "Go to End of Special Value",
23+
"category": "TS Essentials (Experimental)"
24+
},
25+
{
26+
"command": "goToStartOfValue",
27+
"title": "Go to Start of Special Value",
28+
"category": "TS Essentials (Experimental)"
29+
},
30+
{
31+
"command": "selectSpecialValue",
32+
"title": "Select Special Value",
33+
"category": "TS Essentials (Experimental)"
34+
},
35+
{
36+
"command": "pickAndInsertFunctionArguments",
37+
"title": "Pick and Insert Function Arguments",
38+
"category": "TS Essentials"
1939
}
2040
],
2141
"typescriptServerPlugins": [
@@ -62,14 +82,19 @@
6282
"@types/node": "^16.11.21",
6383
"@types/vscode": "^1.63.1",
6484
"@zardoy/tsconfig": "^1.3.1",
65-
"esbuild": "^0.14.38",
85+
"esbuild": "^0.15.15",
6686
"fs-extra": "^10.1.0",
6787
"type-fest": "^2.13.1",
6888
"typed-jsonfile": "^0.2.1",
6989
"typescript": "^4.9.3",
7090
"vitest": "^0.15.1",
7191
"vscode-manifest": "^0.0.4"
7292
},
93+
"pnpm": {
94+
"overrides": {
95+
"esbuild": "^0.15.15"
96+
}
97+
},
7398
"dependencies": {
7499
"@types/chai": "^4.3.3",
75100
"@types/glob": "^8.0.0",
@@ -79,7 +104,7 @@
79104
"@vscode/emmet-helper": "^2.8.4",
80105
"@vscode/test-electron": "^2.1.5",
81106
"@zardoy/utils": "^0.0.9",
82-
"@zardoy/vscode-utils": "^0.0.46",
107+
"@zardoy/vscode-utils": "^0.0.47",
83108
"chai": "^4.3.6",
84109
"chokidar": "^3.5.3",
85110
"chokidar-cli": "^3.0.0",

0 commit comments

Comments
 (0)