tofu icon indicating copy to clipboard operation
tofu copied to clipboard

Experiment in structural code editing

Results 17 tofu issues
Sort by recently updated
recently updated
newest added

```ts ≤a≥; { b; } ``` with `moveNode(RIGHT)` should yield ```ts { ≤a≥; b; } ```

enhancement

Should select whatever AST nodes are in that range

enhancement

**Input** ```javascript asd || (|asd| && asd); ``` **Action** `Shift` + `ArrowLeft` - Range Select Previous **Current output** ```javascript |asd || (asd && asd);| ``` **Expected output** ```javascript |asd ||...

enhancement

- [x] `for ≤await≥ (const a of b) {}` - [x] `import {•} from "x"` - [x] `export function asd()•;`

bug

```ts ≤interface> Huh {} ``` Press `t` ```ts ≤type≥ Huh = {} ``` (and the other way around)

enhancement