From 8bddea4b5876c8239f6a80a6ad4609133b4b53ca Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Mon, 13 Oct 2025 13:10:56 +0200 Subject: [PATCH] Remove the --no-update parameter of poetry lock in the poup command Recent versions of poetry don't provide this option. --- conf.d/aliases.fish | 2 ++ functions/poup.fish | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/conf.d/aliases.fish b/conf.d/aliases.fish index b78352a..3c33c49 100644 --- a/conf.d/aliases.fish +++ b/conf.d/aliases.fish @@ -1 +1,3 @@ +alias ek "emacsclient -t -e '(save-buffers-kill-emacs)'" +alias em "emacs &; disown" alias vim nvim diff --git a/functions/poup.fish b/functions/poup.fish index 00d8746..a7ff89e 100644 --- a/functions/poup.fish +++ b/functions/poup.fish @@ -26,7 +26,7 @@ function poup git checkout --ours $lockfile if test $project_type = poetry - poetry lock --no-update + poetry lock else if test $project_type = uv uv lock end