fix: zsh history substring search

This commit is contained in:
Swarsel 2024-12-19 00:28:35 +01:00
parent c47ad454a0
commit 6fbc165cab
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
2 changed files with 10 additions and 2 deletions

View file

@ -8664,7 +8664,11 @@ Here we set some aliases (some of them should be shellApplications instead) as w
save = 10000;
size = 10000;
};
historySubstringSearch.enable = true;
historySubstringSearch = {
enable = true;
searchDownKey = "^[OB";
searchUpKey = "^[OA";
};
plugins = [
{
name = "fzf-tab";

View file

@ -45,7 +45,11 @@
save = 10000;
size = 10000;
};
historySubstringSearch.enable = true;
historySubstringSearch = {
enable = true;
searchDownKey = "^[OB";
searchUpKey = "^[OA";
};
plugins = [
{
name = "fzf-tab";