add-common-ignore-patterns
9f3ae09
chore: add common ignore patterns by default
kujtimiihoxha created
9f3ae09
chore: add common ignore patterns by default
kujtimiihoxha created
d646527
fix: skip watcher on home
kujtimiihoxha created
c151093
fix: make grep regex implementation skip hidden files to match ripgrep behavior
The regex fallback implementation for grep was including hidden files (starting with '.') while ripgrep naturally excludes them by default. This caused inconsistent behavior between the two search implementations. This change adds explicit hidden file filtering to the regex implementation to ensure both search methods behave consistently and match the documented behavior. Fixes failing TestSearchImplementations/regex test. 💖 Generated with Crush Co-Authored-By: Crush <crush@charm.land>
Carlos Alexandro Becker and Crush created
ef0bc6d
fix: remove healthcheck
Raphael Amorim created
0aca9b2
chore: remove unused example file
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
Carlos Alexandro Becker created
6ab4396
feat: add command history navigation
bashbunni created
c5c8cb6
merge main
bashbunni created
79aa5b4
docs: improve wording
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
Carlos Alexandro Becker created
fe14d35
define maximum number of messages to keep in context
Raphael Amorim created
1fd28a4
fix: broken sessions when tool result missing
Kujtim Hoxha created
b547192
wip: poc retries
Kujtim Hoxha created
f5db0b1
fix(ci): release: use brew formula instead of casks
Ayman Bagabas created
4255a4b
wip
Ayman Bagabas created
12efd7b
chore: test cla bot
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
Carlos Alexandro Becker created
76bdcd9
chore: test cla bot
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
Carlos Alexandro Becker created
ef0d900
feat(legal): add CLA bot, update LICENSE.md
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
Carlos Alexandro Becker created
afc104f
chore: remove comment
Kujtim Hoxha created
e0eb359
Add RFC and implementation of import and stats
Manuel Odendahl created
e87b41e
apparently making a function public
hems created
42a12fd
fix: Delegate unhandled messages to the focused model
Currently, chatPage does not handle anything other than special events. As a result, API/command responses from child models are passed to the parent and processed without being communicated to the child (for example, it is currently possible to open an external editor, but the new text after closing the editor is not reflected in Crush's editor). As an alternative solution, it is possible to export the child's tea.Msg to the parent to address this issue, but we would prefer to handle the logic closed in the child without communicating the details to the parent as much as possible.
ras0q created