Commit 951a165
feat: lazygit-style actions, non-blocking execution, and UX improvements
- Replace two-step action system with lazygit-style Ctrl+key shortcuts
and Shift+A interactive action menu with j/k navigation
- Make action execution non-blocking by spawning CLI/HTTP actions in
background tokio tasks, keeping the TUI responsive during long-running
commands like kubectl delete with graceful termination
- Show animated spinner in confirmation dialog while action executes,
or top-right overlay for actions without confirmation
- Add column-specific search with %column_name% delimiter syntax
- Add --version flag to CLI
- Update docs, examples, and skill config for new action key format
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>1 parent 33c4f19 commit 951a165
File tree
14 files changed
+2462
-330
lines changed- .claude/skills/termstack-yaml-generator
- assets
- docs
- cookbook
- guides
- examples
- src
- action
- config
- input
14 files changed
+2462
-330
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
68 | 68 | | |
69 | 69 | | |
70 | 70 | | |
71 | | - | |
| 71 | + | |
72 | 72 | | |
73 | 73 | | |
74 | 74 | | |
| |||
228 | 228 | | |
229 | 229 | | |
230 | 230 | | |
231 | | - | |
| 231 | + | |
232 | 232 | | |
233 | 233 | | |
234 | 234 | | |
235 | 235 | | |
236 | | - | |
| 236 | + | |
237 | 237 | | |
238 | 238 | | |
239 | 239 | | |
240 | 240 | | |
241 | 241 | | |
242 | 242 | | |
243 | | - | |
| 243 | + | |
244 | 244 | | |
245 | | - | |
| 245 | + | |
246 | 246 | | |
247 | 247 | | |
248 | 248 | | |
249 | 249 | | |
250 | | - | |
| 250 | + | |
251 | 251 | | |
252 | | - | |
| 252 | + | |
253 | 253 | | |
254 | 254 | | |
255 | 255 | | |
256 | | - | |
257 | | - | |
258 | | - | |
| 256 | + | |
| 257 | + | |
| 258 | + | |
259 | 259 | | |
260 | 260 | | |
261 | | - | |
262 | | - | |
263 | | - | |
264 | | - | |
265 | | - | |
266 | | - | |
267 | | - | |
268 | | - | |
269 | | - | |
270 | | - | |
271 | | - | |
272 | | - | |
273 | | - | |
274 | | - | |
275 | | - | |
276 | | - | |
277 | | - | |
278 | | - | |
279 | | - | |
280 | | - | |
281 | 261 | | |
282 | 262 | | |
283 | 263 | | |
| |||
333 | 313 | | |
334 | 314 | | |
335 | 315 | | |
336 | | - | |
| 316 | + | |
337 | 317 | | |
338 | 318 | | |
339 | 319 | | |
340 | 320 | | |
341 | | - | |
| 321 | + | |
342 | 322 | | |
343 | 323 | | |
344 | 324 | | |
| |||
404 | 384 | | |
405 | 385 | | |
406 | 386 | | |
407 | | - | |
| 387 | + | |
408 | 388 | | |
409 | 389 | | |
410 | 390 | | |
| |||
605 | 585 | | |
606 | 586 | | |
607 | 587 | | |
608 | | - | |
| 588 | + | |
609 | 589 | | |
610 | 590 | | |
611 | 591 | | |
| |||
703 | 683 | | |
704 | 684 | | |
705 | 685 | | |
706 | | - | |
| 686 | + | |
707 | 687 | | |
708 | 688 | | |
709 | 689 | | |
| |||
946 | 926 | | |
947 | 927 | | |
948 | 928 | | |
949 | | - | |
| 929 | + | |
950 | 930 | | |
951 | 931 | | |
952 | 932 | | |
953 | | - | |
| 933 | + | |
954 | 934 | | |
955 | 935 | | |
956 | 936 | | |
| |||
984 | 964 | | |
985 | 965 | | |
986 | 966 | | |
987 | | - | |
| 967 | + | |
988 | 968 | | |
989 | 969 | | |
990 | 970 | | |
| |||
1014 | 994 | | |
1015 | 995 | | |
1016 | 996 | | |
1017 | | - | |
| 997 | + | |
1018 | 998 | | |
1019 | 999 | | |
1020 | 1000 | | |
1021 | 1001 | | |
1022 | 1002 | | |
1023 | | - | |
| 1003 | + | |
1024 | 1004 | | |
1025 | 1005 | | |
1026 | 1006 | | |
| |||
1062 | 1042 | | |
1063 | 1043 | | |
1064 | 1044 | | |
1065 | | - | |
| 1045 | + | |
1066 | 1046 | | |
1067 | 1047 | | |
1068 | 1048 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
32 | 32 | | |
33 | 33 | | |
34 | 34 | | |
35 | | - | |
| 35 | + | |
36 | 36 | | |
37 | 37 | | |
38 | 38 | | |
| |||
396 | 396 | | |
397 | 397 | | |
398 | 398 | | |
399 | | - | |
| 399 | + | |
400 | 400 | | |
401 | 401 | | |
402 | 402 | | |
403 | | - | |
| 403 | + | |
404 | 404 | | |
405 | 405 | | |
406 | 406 | | |
407 | 407 | | |
408 | 408 | | |
409 | | - | |
| 409 | + | |
410 | 410 | | |
411 | 411 | | |
412 | 412 | | |
| |||
451 | 451 | | |
452 | 452 | | |
453 | 453 | | |
454 | | - | |
455 | | - | |
| 454 | + | |
| 455 | + | |
456 | 456 | | |
457 | 457 | | |
458 | 458 | | |
| |||
527 | 527 | | |
528 | 528 | | |
529 | 529 | | |
530 | | - | |
| 530 | + | |
531 | 531 | | |
532 | 532 | | |
533 | 533 | | |
| |||
0 commit comments