Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
Carlos Alexandro Becker
created
911dc9b
fix(tui): chat: remove paste key binding from onboarding
Click to expand commit body
The keybinding does not bind to any action in the app but rather assumes
the terminal application's default paste behavior. We shouldn't assume
that and instead leave it to the terminal emulator and user to handle
pasting.
On most macOS terminals the default paste keybinding is `cmd+v` and on
most Windows and Linux terminals it is `ctrl+shift+v`.
Ayman Bagabas
created
2aa5f61
fix: non-interactive and context cancellation when SIGINT (#143)
Click to expand commit body
* fix: non-interactive and context cancellation when SIGINT
* fix: spinner interrupt
* refactor: remove weird context value usage
* fix: improvements
* fix: spinner competing for signal handling
* fix: vendoring
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
* fix: ctrl+c in raw mode
* fix: sigkill can't be handled
---------
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
Carlos Alexandro Becker
created
8ff604f
Merge pull request #134 from charmbracelet/comp-padding
Click to expand commit body
fix(tui): editor: position completions correctly and account for padding
* chore(deps): update mcp-go
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
* fix: vendoring
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
---------
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
Carlos Alexandro Becker
created
d031c54
use readstring instead of bufio to copy behavior of tailinglibrary without token limitation
f8d8ce3
allow for custom contextFiles outside of workingDir path
Tai Groot
created
5711e08
update logs command to have oneshot + follow mode, write to stdout
Tai Groot
created
931029e
chore: fix errors not showing in bash tool
Kujtim Hoxha
created
f99f504
refactor: improve command blocking system and fix test isolation
Click to expand commit body
- Simplify command blocking logic by using utility functions instead of complex closures
- Add sudo to banned commands list
- Move command blocking from bash tool to shell layer for better separation of concerns
- Add comprehensive tests for command blocking functionality
- Fix test isolation by using temporary directories to prevent npm package files from polluting source tree
- Remove redundant command validation logic from bash tool
Kujtim Hoxha
created
b267013
fix(spinner): fix animation not ticking sometimes