@@ -1009,392 +1009,6 @@ export type GlobalEvent = {
10091009 payload : Event
10101010}
10111011
1012- /**
1013- * Custom keybind configurations
1014- */
1015- export type KeybindsConfig = {
1016- /**
1017- * Leader key for keybind combinations
1018- */
1019- leader ?: string
1020- /**
1021- * Exit the application
1022- */
1023- app_exit ?: string
1024- /**
1025- * Open external editor
1026- */
1027- editor_open ?: string
1028- /**
1029- * List available themes
1030- */
1031- theme_list ?: string
1032- /**
1033- * Toggle sidebar
1034- */
1035- sidebar_toggle ?: string
1036- /**
1037- * Toggle session scrollbar
1038- */
1039- scrollbar_toggle ?: string
1040- /**
1041- * Toggle username visibility
1042- */
1043- username_toggle ?: string
1044- /**
1045- * View status
1046- */
1047- status_view ?: string
1048- /**
1049- * Export session to editor
1050- */
1051- session_export ?: string
1052- /**
1053- * Create a new session
1054- */
1055- session_new ?: string
1056- /**
1057- * List all sessions
1058- */
1059- session_list ?: string
1060- /**
1061- * Show session timeline
1062- */
1063- session_timeline ?: string
1064- /**
1065- * Fork session from message
1066- */
1067- session_fork ?: string
1068- /**
1069- * Rename session
1070- */
1071- session_rename ?: string
1072- /**
1073- * Delete session
1074- */
1075- session_delete ?: string
1076- /**
1077- * Delete stash entry
1078- */
1079- stash_delete ?: string
1080- /**
1081- * Open provider list from model dialog
1082- */
1083- model_provider_list ?: string
1084- /**
1085- * Toggle model favorite status
1086- */
1087- model_favorite_toggle ?: string
1088- /**
1089- * Share current session
1090- */
1091- session_share ?: string
1092- /**
1093- * Unshare current session
1094- */
1095- session_unshare ?: string
1096- /**
1097- * Interrupt current session
1098- */
1099- session_interrupt ?: string
1100- /**
1101- * Compact the session
1102- */
1103- session_compact ?: string
1104- /**
1105- * Scroll messages up by one page
1106- */
1107- messages_page_up ?: string
1108- /**
1109- * Scroll messages down by one page
1110- */
1111- messages_page_down ?: string
1112- /**
1113- * Scroll messages up by one line
1114- */
1115- messages_line_up ?: string
1116- /**
1117- * Scroll messages down by one line
1118- */
1119- messages_line_down ?: string
1120- /**
1121- * Scroll messages up by half page
1122- */
1123- messages_half_page_up ?: string
1124- /**
1125- * Scroll messages down by half page
1126- */
1127- messages_half_page_down ?: string
1128- /**
1129- * Navigate to first message
1130- */
1131- messages_first ?: string
1132- /**
1133- * Navigate to last message
1134- */
1135- messages_last ?: string
1136- /**
1137- * Navigate to next message
1138- */
1139- messages_next ?: string
1140- /**
1141- * Navigate to previous message
1142- */
1143- messages_previous ?: string
1144- /**
1145- * Navigate to last user message
1146- */
1147- messages_last_user ?: string
1148- /**
1149- * Copy message
1150- */
1151- messages_copy ?: string
1152- /**
1153- * Undo message
1154- */
1155- messages_undo ?: string
1156- /**
1157- * Redo message
1158- */
1159- messages_redo ?: string
1160- /**
1161- * Toggle code block concealment in messages
1162- */
1163- messages_toggle_conceal ?: string
1164- /**
1165- * Toggle tool details visibility
1166- */
1167- tool_details ?: string
1168- /**
1169- * List available models
1170- */
1171- model_list ?: string
1172- /**
1173- * Next recently used model
1174- */
1175- model_cycle_recent ?: string
1176- /**
1177- * Previous recently used model
1178- */
1179- model_cycle_recent_reverse ?: string
1180- /**
1181- * Next favorite model
1182- */
1183- model_cycle_favorite ?: string
1184- /**
1185- * Previous favorite model
1186- */
1187- model_cycle_favorite_reverse ?: string
1188- /**
1189- * List available commands
1190- */
1191- command_list ?: string
1192- /**
1193- * List agents
1194- */
1195- agent_list ?: string
1196- /**
1197- * Next agent
1198- */
1199- agent_cycle ?: string
1200- /**
1201- * Previous agent
1202- */
1203- agent_cycle_reverse ?: string
1204- /**
1205- * Toggle auto-accept mode for permissions
1206- */
1207- permission_auto_accept_toggle ?: string
1208- /**
1209- * Cycle model variants
1210- */
1211- variant_cycle ?: string
1212- /**
1213- * Clear input field
1214- */
1215- input_clear ?: string
1216- /**
1217- * Paste from clipboard
1218- */
1219- input_paste ?: string
1220- /**
1221- * Submit input
1222- */
1223- input_submit ?: string
1224- /**
1225- * Insert newline in input
1226- */
1227- input_newline ?: string
1228- /**
1229- * Move cursor left in input
1230- */
1231- input_move_left ?: string
1232- /**
1233- * Move cursor right in input
1234- */
1235- input_move_right ?: string
1236- /**
1237- * Move cursor up in input
1238- */
1239- input_move_up ?: string
1240- /**
1241- * Move cursor down in input
1242- */
1243- input_move_down ?: string
1244- /**
1245- * Select left in input
1246- */
1247- input_select_left ?: string
1248- /**
1249- * Select right in input
1250- */
1251- input_select_right ?: string
1252- /**
1253- * Select up in input
1254- */
1255- input_select_up ?: string
1256- /**
1257- * Select down in input
1258- */
1259- input_select_down ?: string
1260- /**
1261- * Move to start of line in input
1262- */
1263- input_line_home ?: string
1264- /**
1265- * Move to end of line in input
1266- */
1267- input_line_end ?: string
1268- /**
1269- * Select to start of line in input
1270- */
1271- input_select_line_home ?: string
1272- /**
1273- * Select to end of line in input
1274- */
1275- input_select_line_end ?: string
1276- /**
1277- * Move to start of visual line in input
1278- */
1279- input_visual_line_home ?: string
1280- /**
1281- * Move to end of visual line in input
1282- */
1283- input_visual_line_end ?: string
1284- /**
1285- * Select to start of visual line in input
1286- */
1287- input_select_visual_line_home ?: string
1288- /**
1289- * Select to end of visual line in input
1290- */
1291- input_select_visual_line_end ?: string
1292- /**
1293- * Move to start of buffer in input
1294- */
1295- input_buffer_home ?: string
1296- /**
1297- * Move to end of buffer in input
1298- */
1299- input_buffer_end ?: string
1300- /**
1301- * Select to start of buffer in input
1302- */
1303- input_select_buffer_home ?: string
1304- /**
1305- * Select to end of buffer in input
1306- */
1307- input_select_buffer_end ?: string
1308- /**
1309- * Delete line in input
1310- */
1311- input_delete_line ?: string
1312- /**
1313- * Delete to end of line in input
1314- */
1315- input_delete_to_line_end ?: string
1316- /**
1317- * Delete to start of line in input
1318- */
1319- input_delete_to_line_start ?: string
1320- /**
1321- * Backspace in input
1322- */
1323- input_backspace ?: string
1324- /**
1325- * Delete character in input
1326- */
1327- input_delete ?: string
1328- /**
1329- * Undo in input
1330- */
1331- input_undo ?: string
1332- /**
1333- * Redo in input
1334- */
1335- input_redo ?: string
1336- /**
1337- * Move word forward in input
1338- */
1339- input_word_forward ?: string
1340- /**
1341- * Move word backward in input
1342- */
1343- input_word_backward ?: string
1344- /**
1345- * Select word forward in input
1346- */
1347- input_select_word_forward ?: string
1348- /**
1349- * Select word backward in input
1350- */
1351- input_select_word_backward ?: string
1352- /**
1353- * Delete word forward in input
1354- */
1355- input_delete_word_forward ?: string
1356- /**
1357- * Delete word backward in input
1358- */
1359- input_delete_word_backward ?: string
1360- /**
1361- * Previous history item
1362- */
1363- history_previous ?: string
1364- /**
1365- * Next history item
1366- */
1367- history_next ?: string
1368- /**
1369- * Next child session
1370- */
1371- session_child_cycle ?: string
1372- /**
1373- * Previous child session
1374- */
1375- session_child_cycle_reverse ?: string
1376- /**
1377- * Go to parent session
1378- */
1379- session_parent ?: string
1380- /**
1381- * Suspend terminal
1382- */
1383- terminal_suspend ?: string
1384- /**
1385- * Toggle terminal title
1386- */
1387- terminal_title_toggle ?: string
1388- /**
1389- * Toggle tips on home screen
1390- */
1391- tips_toggle ?: string
1392- /**
1393- * Toggle thinking blocks visibility
1394- */
1395- display_thinking ?: string
1396- }
1397-
13981012/**
13991013 * Log level
14001014 */
0 commit comments