From 23763fbc4905e736eedf03176611864397e010e9 Mon Sep 17 00:00:00 2001 From: Kujtim Hoxha Date: Sat, 7 Jun 2025 21:24:48 +0200 Subject: [PATCH 1/3] add extra help binding --- internal/tui/tui.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/tui/tui.go b/internal/tui/tui.go index 060b8c79c8572a0508ebcd95a148ff0743bc7009..1c9c2f03ef32161d740992a8b95727e8e3ae6d6d 100644 --- a/internal/tui/tui.go +++ b/internal/tui/tui.go @@ -52,7 +52,7 @@ var keys = keyMap{ key.WithHelp("ctrl+c", "quit"), ), Help: key.NewBinding( - key.WithKeys("ctrl+_"), + key.WithKeys("ctrl+_", "ctrl+h"), key.WithHelp("ctrl+?", "toggle help"), ), @@ -427,7 +427,7 @@ func (a appModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) { // If submitted, replace all named arguments and run the command if msg.Submit { content := msg.Content - + // Replace each named argument with its value for name, value := range msg.Args { placeholder := "$" + name From 0bf2f5f113b1f87910f8e3bace6ebe96aecef5b0 Mon Sep 17 00:00:00 2001 From: Kujtim Hoxha Date: Sun, 22 Jun 2025 15:52:23 +0200 Subject: [PATCH 2/3] add readme note --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index b98c18301e09c5938bd67a0bb79dd8dbe3abfa1f..4cf742d3d5b8f80008253ec5ecd42b4fa016de02 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,8 @@ +> [!NOTE] +> This is the original OpenCode repository, now continuing at Charm with its original creator, [Kujtim Hoxha](https://github.com/kujtimiihoxha). +> Development is continuing under a new name as we prepare for a public relaunch. +> Follow [@charmcli](https://x.com/charmcli) or join our [Discord](https://charm.sh/chat) for updates. + # ⌬ OpenCode

From 73729ef526248ab832d63ed8ec95022caa58b1a4 Mon Sep 17 00:00:00 2001 From: Kujtim Hoxha Date: Sun, 22 Jun 2025 15:56:52 +0200 Subject: [PATCH 3/3] small readme update. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4cf742d3d5b8f80008253ec5ecd42b4fa016de02..0d3e299daeafa9cf4e2a340fd5f1d77f99fb0efb 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ > [!NOTE] -> This is the original OpenCode repository, now continuing at Charm with its original creator, [Kujtim Hoxha](https://github.com/kujtimiihoxha). +> This is the original OpenCode repository, now continuing at [Charm](https://github.com/charmbracelet) with its original creator, [Kujtim Hoxha](https://github.com/kujtimiihoxha). > Development is continuing under a new name as we prepare for a public relaunch. > Follow [@charmcli](https://x.com/charmcli) or join our [Discord](https://charm.sh/chat) for updates.