From 8c773d69097961b730cb0e1c2728fea18c5ebf44 Mon Sep 17 00:00:00 2001 From: Jeroen de Bruijn Date: Wed, 25 Sep 2024 12:08:42 +0200 Subject: [PATCH] fix: remove undesired `work_in_progress` function from the `git` plugin --- zsh/custom/functions.zsh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/zsh/custom/functions.zsh b/zsh/custom/functions.zsh index 23156ed..9be23e9 100644 --- a/zsh/custom/functions.zsh +++ b/zsh/custom/functions.zsh @@ -1,3 +1,8 @@ for function ("${ZSH_CUSTOM}/functions/"*.zsh); do source "${function}" done + +# The `work_in_progress` function is from the `git` plugin. This function is +# conflicting with the zsh-autosuggestions for navigating to Git worktrees, +# making naviation to worktrees slightly annoying. +unfunction work_in_progress # From the git plugin