mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-17 10:02:23 +00:00
docs: document EditorOptions paddingX and editorPaddingX setting
This commit is contained in:
parent
fe52ff00d2
commit
5c938e08d0
2 changed files with 8 additions and 1 deletions
|
|
@ -220,12 +220,18 @@ interface EditorTheme {
|
|||
selectList: SelectListTheme;
|
||||
}
|
||||
|
||||
const editor = new Editor(tui, theme); // tui is required for height-aware scrolling
|
||||
interface EditorOptions {
|
||||
paddingX?: number; // Horizontal padding (default: 0)
|
||||
}
|
||||
|
||||
const editor = new Editor(tui, theme, options?); // tui is required for height-aware scrolling
|
||||
editor.onSubmit = (text) => console.log(text);
|
||||
editor.onChange = (text) => console.log("Changed:", text);
|
||||
editor.disableSubmit = true; // Disable submit temporarily
|
||||
editor.setAutocompleteProvider(provider);
|
||||
editor.borderColor = (s) => chalk.blue(s); // Change border dynamically
|
||||
editor.setPaddingX(1); // Update horizontal padding dynamically
|
||||
editor.getPaddingX(); // Get current padding
|
||||
```
|
||||
|
||||
**Features:**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue