From 6ab6fb3eb5cc06e73bccf0915d188fc1f69f4713 Mon Sep 17 00:00:00 2001 From: Myned Date: Mon, 10 Feb 2025 18:19:08 -0600 Subject: [PATCH] fish: fix % in expansion Signed-off-by: Myned --- options/custom/programs/fish.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/options/custom/programs/fish.nix b/options/custom/programs/fish.nix index ab80c3c..24b98ef 100644 --- a/options/custom/programs/fish.nix +++ b/options/custom/programs/fish.nix @@ -23,7 +23,7 @@ in { # Expand abbreviations anywhere in the shell #?? sudo ABBREVIATION anywhere = expansion: { - expansion = "${expansion}%"; + inherit expansion; position = "anywhere"; setCursor = true; };