Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
6d07fcd
feat(select): migrate from fzf to nucleo-picker for built-in fuzzy se…
amitksingh1490 Apr 21, 2026
aa960fe
refactor(select): migrate from fzf to nucleo-picker for built-in fuzz…
amitksingh1490 Apr 26, 2026
9cc1d9f
feat(select): migrate from nucleo-picker to custom implementation wit…
amitksingh1490 Apr 26, 2026
4cc9a1c
Merge remote-tracking branch 'origin/main' into necleo-migrate
amitksingh1490 Apr 26, 2026
739ae95
feat(select): add subcommands for model, agent, provider, reasoning-e…
amitksingh1490 Apr 26, 2026
4f89d40
refactor(select): consolidate UI selection logic and migrate file com…
amitksingh1490 Apr 27, 2026
f27e66b
Merge branch 'main' into necleo-migrate
amitksingh1490 Apr 27, 2026
093481e
refactor(select): change CLI selection handlers to return Ok(()) inst…
amitksingh1490 Apr 27, 2026
53df053
refactor(select): remove pipe-based stdin selection and migrate to su…
amitksingh1490 Apr 27, 2026
4424ee0
Merge branch 'main' into necleo-migrate
amitksingh1490 Apr 27, 2026
d8ea23a
[autofix.ci] apply automated fixes
autofix-ci[bot] Apr 27, 2026
aedf912
refactor(select): extract reusable selection functions and consolidat…
amitksingh1490 Apr 27, 2026
aa9388a
[autofix.ci] apply automated fixes
autofix-ci[bot] Apr 27, 2026
19bac7a
refactor(select): migrate selection UI from forge_main to forge_selec…
amitksingh1490 Apr 27, 2026
befb3a6
refactor(select): migrate selection UI to builder pattern with derive…
amitksingh1490 Apr 27, 2026
550bbcf
refactor(select): remove unused redirect_stdin_to_tty helper and sele…
amitksingh1490 Apr 27, 2026
c59f3fe
refactor(select): consolidate query handling and fix cancel behavior …
amitksingh1490 Apr 27, 2026
1fa530b
refactor(select): add dedicated search field to SelectRow for fuzzy m…
amitksingh1490 Apr 27, 2026
710bcfd
Merge branch 'main' into necleo-migrate
amitksingh1490 Apr 27, 2026
4026901
Merge branch 'main' into necleo-migrate
tusharmath Apr 28, 2026
562a57b
Merge branch 'main' into necleo-migrate
amitksingh1490 Apr 28, 2026
385f3f0
refactor(select): migrate from nucleo-picker to custom nucleo-backed …
amitksingh1490 Apr 28, 2026
767b128
refactor(select): implement inline viewport with dynamic height reser…
amitksingh1490 Apr 28, 2026
97176c5
Merge remote-tracking branch 'origin/main' into necleo-migrate
amitksingh1490 Apr 29, 2026
65d8410
refactor(select): optimize render loop with dirty flag and longer pol…
amitksingh1490 Apr 29, 2026
1d4c96f
refactor(select): remove binary file skip and fix viewport cursor pos…
amitksingh1490 Apr 30, 2026
d3f2108
refactor(select): adjust header height and add text wrapping with ell…
amitksingh1490 Apr 30, 2026
ef0783b
Merge branch 'main' into necleo-migrate
amitksingh1490 Apr 30, 2026
ea7d65a
Merge remote-tracking branch 'origin/main' into necleo-migrate
amitksingh1490 Apr 30, 2026
c71e84d
Merge branch 'main' into necleo-migrate
amitksingh1490 May 1, 2026
3d4af40
Merge branch 'main' into necleo-migrate
amitksingh1490 May 4, 2026
7a857db
[autofix.ci] apply automated fixes
autofix-ci[bot] May 4, 2026
5c3e291
[autofix.ci] apply automated fixes (attempt 2/3)
autofix-ci[bot] May 4, 2026
8117455
fix(forge_select): correct viewport height calculation for right-side…
amitksingh1490 May 4, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
177 changes: 86 additions & 91 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ derive_setters = "0.1.9"
dirs = "6.0.0"
dissimilar = "1.0.9"
dotenvy = "0.15.7"
fzf-wrapped = "0.1.4"
futures = "0.3.32"
gh-workflow = "0.8.1"
glob = "0.3.3"
Expand Down Expand Up @@ -131,6 +130,7 @@ rmcp = { version = "0.10.0", features = [
] }
open = "5.3.2"
nucleo = "0.5.0"
nucleo-picker = "0.11.1"
gray_matter = "0.3.2"
num-format = "0.4"
humantime = "2.1.0"
Expand Down
Loading
Loading