-
just disable this |
Beta Was this translation helpful? Give feedback.
Replies: 15 comments
-
Commenting out and seems to do it for me.That said, I would also see benefit in having a way to disable or customize this behavior as it seems inconsistent with the rest. |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
Yeah I also wanted to disable it, cause it often locks up for me and I have to kill the terminal. Cant Ctrl+C out of the history menu and then its all buggered. |
Beta Was this translation helpful? Give feedback.
-
It used to make my terminal freeze too, until I commented the lines mentioned in this comment #645 (comment) |
Beta Was this translation helpful? Give feedback.
-
This problem has been solved. The requirement is to disable the display of fzf's history when pressing up, but after pressing tab, the arrow keys also can be able to be used in completion. Now the requirements are basically met. my modifications: ![]() pr: now: 2024-02-29.11.50.08.mov |
Beta Was this translation helpful? Give feedback.
-
Could you please leave this open until an actual fix is implemented? |
Beta Was this translation helpful? Give feedback.
-
the readme states how to reset up/down arrow keys to zsh-default: https://github.com/marlonrichert/zsh-autocomplete?tab=readme-ov-file#reset-history-key-bindings-to-zsh-default |
Beta Was this translation helpful? Give feedback.
-
I'm also trying to disable the history search. I just want normal scroll through the history like zsh native. Update: #698 (comment) putting |
Beta Was this translation helpful? Give feedback.
-
bumping this, I prefer to default behavior. it would be nice have actual config to support this. |
Beta Was this translation helpful? Give feedback.
-
Same issue here, tried everything suggested before and none of that works |
Beta Was this translation helpful? Give feedback.
-
I commented on the related issue for what worked for me. Give it a try :) |
Beta Was this translation helpful? Give feedback.
-
still unable to disable the arrow up search |
Beta Was this translation helpful? Give feedback.
-
It has since been deleted, "Restore Zsh-default functionality" looks really out of place without it Edit: found the commit |
Beta Was this translation helpful? Give feedback.
-
() {
local -a prefix=( '\e'{\[,O} )
local -a up=( ${^prefix}A ) down=( ${^prefix}B )
local key=
for key in $up[@]; do
bindkey "$key" up-line-or-history
done
for key in $down[@]; do
bindkey "$key" down-line-or-history
done
} All it needs is this. Why it was remove from docs? Yeah, its from that commit. Though, I took it from there. This should solve it. |
Beta Was this translation helpful? Give feedback.
-
If anyone wants a smaller entry for the solution provided above you can also use this one-liner to achieve the same
|
Beta Was this translation helpful? Give feedback.
All it needs is this. Why it was remove from docs? Yeah, its from that commit. Though, I took it from there. This should solve it.