From 01d280dbfeccca340f1e5bd2ae2ba35920ec1d01 Mon Sep 17 00:00:00 2001 From: aviu16 <162624394+aviu16@users.noreply.github.com> Date: Sun, 15 Feb 2026 06:32:43 -0500 Subject: [PATCH] fix(rbw): quote password variable password wasnt quoted so if it had spaces it would get split. pretty bad for a password manager plugin lol --- plugins/rbw/rbw.plugin.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/rbw/rbw.plugin.zsh b/plugins/rbw/rbw.plugin.zsh index 0b55e6e5f..2077d0a7f 100644 --- a/plugins/rbw/rbw.plugin.zsh +++ b/plugins/rbw/rbw.plugin.zsh @@ -36,7 +36,7 @@ function rbwpw { echo -n "$_random" > "$_cache" # Use clipcopy to copy the password to the clipboard - echo -n $pw | clipcopy + echo -n "$pw" | clipcopy echo "password for $service copied!" # Clear the clipboard after 20 seconds, but only if the clipboard hasn't