From 3c45e40941652cbf6ad53b5aa83181bd498ddca1 Mon Sep 17 00:00:00 2001 From: Superredstone Date: Thu, 28 May 2026 16:09:20 +0200 Subject: [PATCH] fix(fish): shell completions --- home/fish.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/fish.nix b/home/fish.nix index e530158..ac93b2f 100644 --- a/home/fish.nix +++ b/home/fish.nix @@ -3,7 +3,7 @@ programs.fish = { enable = true; shellAliases = { - "please" = "sudo $(fc -ln -1)"; + "please" = "sudo $history[1]"; "amend" = "git commit --amend"; "commit" = "git commit"; "add" = "git add .";