From d75f129cc21f56fae4d03f14ee889180fb3e1189 Mon Sep 17 00:00:00 2001 From: Vladimir Hodakov Date: Fri, 3 Jan 2025 06:04:40 +0400 Subject: [PATCH] Add another change to use Atuin instead of ZSH functions --- zsh/30-keys.zsh | 7 ------- 1 file changed, 7 deletions(-) diff --git a/zsh/30-keys.zsh b/zsh/30-keys.zsh index 1bb3d50..58fdd7f 100644 --- a/zsh/30-keys.zsh +++ b/zsh/30-keys.zsh @@ -23,13 +23,6 @@ select-word-style bash bindkey '\ew' kill-region # [Esc-w] - Kill from the cursor to the mark bindkey -s '\el' 'ls\n' # [Esc-l] - run command: ls -if [[ "${terminfo[kcuu1]}" != "" ]]; then - bindkey "${terminfo[kcuu1]}" up-line-or-search # start typing + [Up-Arrow] - fuzzy find history forward -fi -if [[ "${terminfo[kcud1]}" != "" ]]; then - bindkey "${terminfo[kcud1]}" down-line-or-search # start typing + [Down-Arrow] - fuzzy find history backward -fi - if [[ "${terminfo[khome]}" != "" ]]; then bindkey "${terminfo[khome]}" beginning-of-line # [Home] - Go to beginning of line fi