The current implementation of the Ctrl-Y keybinding in git-recent copies the full line from fzf to the clipboard. This includes worktree symbols (e.g., ⇶) and Gerrit CL URLs if the --cl flag is used.
Ideally, Ctrl-Y should only copy the branch name.
Suggested fix:
Update the ctrl-y binding to extract the first field before passing it to the copy command.
The current implementation of the
Ctrl-Ykeybinding ingit-recentcopies the full line fromfzfto the clipboard. This includes worktree symbols (e.g.,⇶) and Gerrit CL URLs if the--clflag is used.Ideally,
Ctrl-Yshould only copy the branch name.Suggested fix:
Update the
ctrl-ybinding to extract the first field before passing it to the copy command.