jira-cli
jira-cli copied to clipboard
Editing issues from list view
Hi - sorry if I'm missing something obvious here. I don't understand how to edit an issue from the list view. Is the only one to note the issue number, leave the list view and issue an edit command?
Thanks for your work!
Hi @robertocarta, this feature is yet to be implemented. For now, you'll have to issue the edit command separately.
Obviously it's a huge feature but something akin to ranger for navigating and modifying sprints and issues within them would be incredible
Any progress on that? Thanks for this tool!
If someone else is interested I made a script using fzf to achieve this. It's just to press 'e' on an item list to trigger the edit mode and 'm' to move mode.
j(){
SEARCH_QUERY='jira issue list -a$(jira me) --plain --columns id,summary,status'
FZF_DEFAULT_COMMAND=$SEARCH_QUERY fzf \
--layout=reverse \
--header-lines=1 \
--preview 'jira issue view {1}' \
--bind 'e:execute(jira issue edit {1})'\
--bind 'm:execute(jira issue move {1})'
}