Add configurable custom commands#42
Merged
textfuel merged 1 commit intotextfuel:mainfrom Apr 16, 2026
Merged
Conversation
textfuel
requested changes
Apr 13, 2026
Owner
textfuel
left a comment
There was a problem hiding this comment.
really like this feature, custom commands have been on my wishlist for a while
left some small notes inline, if any of those land i think this becomes great
thanks for writing it up
b33bb47 to
6a2a92c
Compare
Bind shell commands to keys with Go template access to the focused issue, project, or comment. Each command declares the UI contexts in which it fires (issues, info, projects, detail, detail.comments); when `contexts:` is omitted, the default is wherever an issue is focused. Custom bindings take precedence over built-in keys, so users can override any action. A `suspend` flag controls TUI suspension for the command's duration, and a `shellescape` template helper is available for safe interpolation. Registered commands appear in the help overlay.
6a2a92c to
5a8db18
Compare
textfuel
approved these changes
Apr 16, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #39
Let users bind shell commands to keys, with Go template access to
the focused issue, project, or comment. Each command declares the
UI contexts in which it fires (
issues,info,projects,detail,detail.comments); whencontexts:is omitted, thedefault is wherever an issue is focused.
Custom bindings take precedence over built-in keys, so users can
override any action. A
suspendflag controls TUI suspension forthe command's duration, and a
shellescapetemplate helper isavailable for safe interpolation. Registered commands appear in the
help overlay.