Skip to content

25.01.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 01 Jan 00:29
· 1 commit to main since this release
df51911

Changes since 24.12.0:

  • chore: rename default branch (#410)
  • fix: fix edit file key binding (alt-e) in diff and add (#415)
    The key binding for editing a file in diff and add was not working
    properly on recent versions of fzf. As its documentation suggests, we
    should replace `execute-silent` with `execute` since we need to switch
    to a new screen and handle both input and output.

    fzf switches to the alternate screen when executing a command.
    However, if the command is expected to complete quickly, and you are
    not interested in its output, you might want to use execute-silent
    instead, which silently executes the command without the switching.