From 09abce0d1845271d6d08e1292b3157c3213edaae Mon Sep 17 00:00:00 2001 From: JT <547158+jntrnr@users.noreply.github.com> Date: Thu, 3 Mar 2022 15:29:10 -0500 Subject: [PATCH] Update git-completions.nu --- custom-completions/git/git-completions.nu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom-completions/git/git-completions.nu b/custom-completions/git/git-completions.nu index 4552618..dadf4ab 100644 --- a/custom-completions/git/git-completions.nu +++ b/custom-completions/git/git-completions.nu @@ -1,7 +1,7 @@ # Written by JT def "nu-complete git branches" [] { - ^git branch | lines | each { |line| $line | str find-replace "\* " "" | str trim } + ^git branch | lines | each { |line| $line | str find-replace '\* ' "" | str trim } } def "nu-complete git remotes" [] {