Support auto wrapping of in the multiline editor. (#383)

This commit is contained in:
Jacob Richman
2025-05-16 11:58:37 -07:00
committed by GitHub
parent 968e09f0b5
commit c692a0c583
6 changed files with 1099 additions and 173 deletions

20
.vscode/launch.json vendored
View File

@@ -22,6 +22,26 @@
"skipFiles": ["<node_internals>/**"],
"program": "${file}",
"outFiles": ["${workspaceFolder}/**/*.js"]
},
{
"type": "node",
"request": "launch",
"name": "Debug CLI Test: text-buffer",
"runtimeExecutable": "npm",
"runtimeArgs": [
"run",
"test",
"-w",
"packages/cli",
"--",
"--inspect-brk=9229",
"--no-file-parallelism",
"${workspaceFolder}/packages/cli/src/ui/components/shared/text-buffer.test.ts"
],
"cwd": "${workspaceFolder}",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"skipFiles": ["<node_internals>/**"]
}
]
}