You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-**Diagnostics** — parse errors and **range-of-motion safety clamps** as you type (e.g. `knees: flex 200° → clamped to 144°`).
7
-
-**Completion** — context-aware: kinds after `movit`, joints at line start, actions after `<joint>:`, easings in a `step` header, poses after `pose start =`, effectors after `ground-lock:`.
7
+
-**Completion** — context-aware: kinds after `posecode`, joints at line start, actions after `<joint>:`, easings in a `step` header, poses after `pose start =`, effectors after `ground-lock:`.
8
8
-**Hover** — the safe ROM range for a joint + action, and short docs for keywords.
9
9
10
-
The smart features are provided by [`movit-lsp`](../../packages/movit-lsp), which shares its language logic ([`movit-language`](../../packages/movit-language)) with the web playground — so the editor and the playground always agree.
10
+
The smart features are provided by [`posecode-lsp`](../../packages/posecode-lsp), which shares its language logic ([`posecode-language`](../../packages/posecode-language)) with the web playground — so the editor and the playground always agree.
11
11
12
12
## Develop / run locally
13
13
14
14
From the repo root:
15
15
16
16
```bash
17
17
npm install
18
-
npm run build -w movit-vscode # compiles the client + bundles the LSP to dist/server.cjs
18
+
npm run build -w posecode-vscode # compiles the client + bundles the LSP to dist/server.cjs
19
19
```
20
20
21
-
Then open this folder in VS Code and press **F5** ("Run Extension") to launch an Extension Development Host, and open any `.movit` file.
21
+
Then open this folder in VS Code and press **F5** ("Run Extension") to launch an Extension Development Host, and open any `.posecode` file.
Copy file name to clipboardExpand all lines: editors/vscode/package.json
+11-11Lines changed: 11 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -1,36 +1,36 @@
1
1
{
2
-
"name": "movit-vscode",
2
+
"name": "posecode-vscode",
3
3
"private": true,
4
-
"displayName": "Movit",
5
-
"description": "Language support for the Movit (.movit) kinematic motion DSL — syntax highlighting, range-of-motion diagnostics, completion, and hover.",
4
+
"displayName": "Posecode",
5
+
"description": "Language support for the Posecode (.posecode) kinematic motion DSL — syntax highlighting, range-of-motion diagnostics, completion, and hover.",
0 commit comments