Skip to content

Commit db7ca33

Browse files
committed
issue list - add fzf binding for logging time
1 parent 75464f2 commit db7ca33

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

cmd/issue/list.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,12 @@ var ListCmd = &cobra.Command{
3939
useFZFInternal, _ := cmd.Flags().GetBool("fzf-internal")
4040
if useFZF {
4141
util.ReplaceListWithFzf("--read0 --prompt 'View > '" +
42-
" --header='\033[1;33mctrl-w\033[m: web view | \033[1;33mctrl-t\033[m: transition issue | \033[1;33mctrl-p\033[m: set priority'" +
42+
" --header='\033[1;33mctrl-w\033[m: web view | \033[1;33mctrl-t\033[m: transition issue | \033[1;33mctrl-p\033[m: set priority | \033[1;33mctrl-l\033[m: log time'" +
4343
" --preview '" + os.Args[0] + " issue view {2} --color' --preview-window=hidden" + // start with hidden preview
4444
" --bind 'enter:become(" + os.Args[0] + " issue view {2})'" +
4545
" --bind 'ctrl-w:execute(" + os.Args[0] + " issue view --web {2})'" +
4646
" --bind 'ctrl-t:execute(" + os.Args[0] + " issue transition {2})'" +
47+
" --bind 'ctrl-l:execute(" + os.Args[0] + " issue log {2})'" +
4748
" --bind 'ctrl-p:execute(" + os.Args[0] + " issue priority {2})'")
4849
return
4950
}

0 commit comments

Comments
 (0)