- Change Enter key help from "confirm" to "choose"
- Change Escape key help from "cancel" to "exit"
💘 Generated with Crush
Co-Authored-By: Crush <crush@charm.land>
Christian Rocha
and
Crush
created
de306c2
chore: update session chooser key help text
Click to expand commit body
- Change Enter key help from "confirm" to "choose"
- Change Escape key help from "cancel" to "exit"
💘 Generated with Crush
Co-Authored-By: Crush <crush@charm.land>
Christian Rocha
and
Crush
created
53a4703
chore(taskfile): change `release` task to add a commit for the tag (#1159)
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
Carlos Alexandro Becker
created
e3240a2
fix(lsp): allow directories as root markers (#1117)
Click to expand commit body
* test(fsext): add GlobWithDoubleStar tests
Covers
- Basic file and directory matching
- Nested directory patterns
- Limit parameter behavior
- Modification time sorting
- Empty and non-existent directory handling
- Ignore pattern respect
Co-Authored-By: Crush <crush@charm.land>
* fix: allow directories as root markers
The removed line was preventing users from setting directories
as root markers, which should be allowed according to the
configuration specification.
Co-Authored-By: Crush <crush@charm.land>
* fix: normalize slashes for Windows glob matching
Normalize both paths and patterns to forward slashes for consistent
cross-platform glob matching:
- Normalize relative paths from filepath.Rel before pattern matching
- Normalize input glob patterns on Windows at function entry
- Fixes Windows test failures where backslashes don't match forward
slash patterns
Co-Authored-By: Crush <crush@charm.land>
* test(fsext): remove unnecessary GOOS check
Co-Authored-By: Crush <crush@charm.land>
* test(fsext): more concise error checking
Co-Authored-By: Crush <crush@charm.land>
* test(fsext): simplify assertions
Co-Authored-By: Crush <crush@charm.land>
* test(fsext): use deterministic mod times
Co-Authored-By: Crush <crush@charm.land>
* test(fsext): further simplifications
Co-Authored-By: Crush <crush@charm.land>
* test(fsext): improve readability
and yeet useless LLM comments
---------
Co-authored-by: Crush <crush@charm.land>
Amolith
and
Crush
created
a116bea
chore(legal): @Kaneki-x has signed the CLA
Charm
created
9fd7f48
chore(metrics): have a better identifier fallback (#1130)
you can use it as:
```sh
task release -- -m 'some short description'
```
and it'll:
- figure out the next tag using svu
- check if you're on main
- check branch is clean
- drop the nightly tag (it's recreated, so if you have an old one, `git push --tags` will complain about it)
- `git tag --sign <next version>` + any args you pass to release
- `git push --tags`
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
this seems to fix a panic I've been getting some times.
bubbletea eats part of the trace, so I'm not sure it's a race, but
judging by the code, and the fact that fastwalk creates multiple
goroutines, it makes sense.
i've been using this for the past few hours and haven't encountered the
error since.
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
Carlos Alexandro Becker
created
09d8e75
fix(mcp/lsp): expand variable in commands (#1116)
Click to expand commit body
closes #806
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
Co-authored-by: taigr <taigr@users.noreply.github.com>