diff options
| author | GitHub Action <[email protected]> | 2025-12-11 16:24:30 +0000 |
|---|---|---|
| committer | GitHub Action <[email protected]> | 2025-12-11 16:24:30 +0000 |
| commit | fad5cbe6c7a187b4c1445bdd04497f9209f95bf8 (patch) | |
| tree | 2af494fed2997d228dca83675c3e36ff146bafbc /packages/sdk/js/src/v2/gen | |
| parent | e271852bc3c6e3e4ee04a2245a7bc2c8f8b7f30a (diff) | |
| download | opencode-fad5cbe6c7a187b4c1445bdd04497f9209f95bf8.tar.gz opencode-fad5cbe6c7a187b4c1445bdd04497f9209f95bf8.zip | |
chore: format code
Diffstat (limited to 'packages/sdk/js/src/v2/gen')
| -rw-r--r-- | packages/sdk/js/src/v2/gen/types.gen.ts | 132 |
1 files changed, 132 insertions, 0 deletions
diff --git a/packages/sdk/js/src/v2/gen/types.gen.ts b/packages/sdk/js/src/v2/gen/types.gen.ts index dade066c0..f8890d9fb 100644 --- a/packages/sdk/js/src/v2/gen/types.gen.ts +++ b/packages/sdk/js/src/v2/gen/types.gen.ts @@ -949,6 +949,138 @@ export type KeybindsConfig = { */ input_newline?: string /** + * Move cursor left in input + */ + input_move_left?: string + /** + * Move cursor right in input + */ + input_move_right?: string + /** + * Move cursor up in input + */ + input_move_up?: string + /** + * Move cursor down in input + */ + input_move_down?: string + /** + * Select left in input + */ + input_select_left?: string + /** + * Select right in input + */ + input_select_right?: string + /** + * Select up in input + */ + input_select_up?: string + /** + * Select down in input + */ + input_select_down?: string + /** + * Move to start of line in input + */ + input_line_home?: string + /** + * Move to end of line in input + */ + input_line_end?: string + /** + * Select to start of line in input + */ + input_select_line_home?: string + /** + * Select to end of line in input + */ + input_select_line_end?: string + /** + * Move to start of visual line in input + */ + input_visual_line_home?: string + /** + * Move to end of visual line in input + */ + input_visual_line_end?: string + /** + * Select to start of visual line in input + */ + input_select_visual_line_home?: string + /** + * Select to end of visual line in input + */ + input_select_visual_line_end?: string + /** + * Move to start of buffer in input + */ + input_buffer_home?: string + /** + * Move to end of buffer in input + */ + input_buffer_end?: string + /** + * Select to start of buffer in input + */ + input_select_buffer_home?: string + /** + * Select to end of buffer in input + */ + input_select_buffer_end?: string + /** + * Delete line in input + */ + input_delete_line?: string + /** + * Delete to end of line in input + */ + input_delete_to_line_end?: string + /** + * Delete to start of line in input + */ + input_delete_to_line_start?: string + /** + * Backspace in input + */ + input_backspace?: string + /** + * Delete character in input + */ + input_delete?: string + /** + * Undo in input + */ + input_undo?: string + /** + * Redo in input + */ + input_redo?: string + /** + * Move word forward in input + */ + input_word_forward?: string + /** + * Move word backward in input + */ + input_word_backward?: string + /** + * Select word forward in input + */ + input_select_word_forward?: string + /** + * Select word backward in input + */ + input_select_word_backward?: string + /** + * Delete word forward in input + */ + input_delete_word_forward?: string + /** + * Delete word backward in input + */ + input_delete_word_backward?: string + /** * Previous history item */ history_previous?: string |
