zsh:keys: Remove duplicate cd-up definition

I forgot that this was already a thing before d961daf38 ("zsh:keys:
Change one dir up on `^U`") and missed that I only moved the function in
the file instead of creating it (the changes were lying around a bit).
This commit is contained in:
2025-02-19 15:16:13 +01:00
parent d961daf384
commit 90b64a8603

View File

@@ -235,14 +235,6 @@ zle -N insert-shcwd
# Ctrl-Shift-G
bindkey '^[[71;6u' insert-shcwd
# move one directory up on ^U (mnemonic: 'Up')
function cd-up {
pushd -q ..
redraw-prompt
}
zle -N cd-up
bindkey '^U' cd-up
## History
# Ctrl-Up
bindkey '^[[1;5A' fzf-history-widget