@opencode-ai/sdk 1.0.146 → 1.0.147
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/v2/gen/types.gen.d.ts +132 -0
- package/package.json +1 -1
|
@@ -806,6 +806,138 @@ export type KeybindsConfig = {
|
|
|
806
806
|
* Insert newline in input
|
|
807
807
|
*/
|
|
808
808
|
input_newline?: string;
|
|
809
|
+
/**
|
|
810
|
+
* Move cursor left in input
|
|
811
|
+
*/
|
|
812
|
+
input_move_left?: string;
|
|
813
|
+
/**
|
|
814
|
+
* Move cursor right in input
|
|
815
|
+
*/
|
|
816
|
+
input_move_right?: string;
|
|
817
|
+
/**
|
|
818
|
+
* Move cursor up in input
|
|
819
|
+
*/
|
|
820
|
+
input_move_up?: string;
|
|
821
|
+
/**
|
|
822
|
+
* Move cursor down in input
|
|
823
|
+
*/
|
|
824
|
+
input_move_down?: string;
|
|
825
|
+
/**
|
|
826
|
+
* Select left in input
|
|
827
|
+
*/
|
|
828
|
+
input_select_left?: string;
|
|
829
|
+
/**
|
|
830
|
+
* Select right in input
|
|
831
|
+
*/
|
|
832
|
+
input_select_right?: string;
|
|
833
|
+
/**
|
|
834
|
+
* Select up in input
|
|
835
|
+
*/
|
|
836
|
+
input_select_up?: string;
|
|
837
|
+
/**
|
|
838
|
+
* Select down in input
|
|
839
|
+
*/
|
|
840
|
+
input_select_down?: string;
|
|
841
|
+
/**
|
|
842
|
+
* Move to start of line in input
|
|
843
|
+
*/
|
|
844
|
+
input_line_home?: string;
|
|
845
|
+
/**
|
|
846
|
+
* Move to end of line in input
|
|
847
|
+
*/
|
|
848
|
+
input_line_end?: string;
|
|
849
|
+
/**
|
|
850
|
+
* Select to start of line in input
|
|
851
|
+
*/
|
|
852
|
+
input_select_line_home?: string;
|
|
853
|
+
/**
|
|
854
|
+
* Select to end of line in input
|
|
855
|
+
*/
|
|
856
|
+
input_select_line_end?: string;
|
|
857
|
+
/**
|
|
858
|
+
* Move to start of visual line in input
|
|
859
|
+
*/
|
|
860
|
+
input_visual_line_home?: string;
|
|
861
|
+
/**
|
|
862
|
+
* Move to end of visual line in input
|
|
863
|
+
*/
|
|
864
|
+
input_visual_line_end?: string;
|
|
865
|
+
/**
|
|
866
|
+
* Select to start of visual line in input
|
|
867
|
+
*/
|
|
868
|
+
input_select_visual_line_home?: string;
|
|
869
|
+
/**
|
|
870
|
+
* Select to end of visual line in input
|
|
871
|
+
*/
|
|
872
|
+
input_select_visual_line_end?: string;
|
|
873
|
+
/**
|
|
874
|
+
* Move to start of buffer in input
|
|
875
|
+
*/
|
|
876
|
+
input_buffer_home?: string;
|
|
877
|
+
/**
|
|
878
|
+
* Move to end of buffer in input
|
|
879
|
+
*/
|
|
880
|
+
input_buffer_end?: string;
|
|
881
|
+
/**
|
|
882
|
+
* Select to start of buffer in input
|
|
883
|
+
*/
|
|
884
|
+
input_select_buffer_home?: string;
|
|
885
|
+
/**
|
|
886
|
+
* Select to end of buffer in input
|
|
887
|
+
*/
|
|
888
|
+
input_select_buffer_end?: string;
|
|
889
|
+
/**
|
|
890
|
+
* Delete line in input
|
|
891
|
+
*/
|
|
892
|
+
input_delete_line?: string;
|
|
893
|
+
/**
|
|
894
|
+
* Delete to end of line in input
|
|
895
|
+
*/
|
|
896
|
+
input_delete_to_line_end?: string;
|
|
897
|
+
/**
|
|
898
|
+
* Delete to start of line in input
|
|
899
|
+
*/
|
|
900
|
+
input_delete_to_line_start?: string;
|
|
901
|
+
/**
|
|
902
|
+
* Backspace in input
|
|
903
|
+
*/
|
|
904
|
+
input_backspace?: string;
|
|
905
|
+
/**
|
|
906
|
+
* Delete character in input
|
|
907
|
+
*/
|
|
908
|
+
input_delete?: string;
|
|
909
|
+
/**
|
|
910
|
+
* Undo in input
|
|
911
|
+
*/
|
|
912
|
+
input_undo?: string;
|
|
913
|
+
/**
|
|
914
|
+
* Redo in input
|
|
915
|
+
*/
|
|
916
|
+
input_redo?: string;
|
|
917
|
+
/**
|
|
918
|
+
* Move word forward in input
|
|
919
|
+
*/
|
|
920
|
+
input_word_forward?: string;
|
|
921
|
+
/**
|
|
922
|
+
* Move word backward in input
|
|
923
|
+
*/
|
|
924
|
+
input_word_backward?: string;
|
|
925
|
+
/**
|
|
926
|
+
* Select word forward in input
|
|
927
|
+
*/
|
|
928
|
+
input_select_word_forward?: string;
|
|
929
|
+
/**
|
|
930
|
+
* Select word backward in input
|
|
931
|
+
*/
|
|
932
|
+
input_select_word_backward?: string;
|
|
933
|
+
/**
|
|
934
|
+
* Delete word forward in input
|
|
935
|
+
*/
|
|
936
|
+
input_delete_word_forward?: string;
|
|
937
|
+
/**
|
|
938
|
+
* Delete word backward in input
|
|
939
|
+
*/
|
|
940
|
+
input_delete_word_backward?: string;
|
|
809
941
|
/**
|
|
810
942
|
* Previous history item
|
|
811
943
|
*/
|