Multi Cursor

Stacked code lines each with a primary-tinted blinking caret at the same column plus a header count.

3 cursors
const name = 'Ayşe';
const role = 'design';
const team = 'core';

Requires shadcn/ui initialized. Run npx shadcn@latest init if you haven't.

Import & use
import { Editor16 } from "@/components/beste/piece/editor16";

<Editor16
  prefix="const "
  lines={[
    "name = 'Ayşe';",
    "role = 'design';",
    "team = 'core';"
  ]}
/>