From 0445062d276fc6d26978d1ff6e58cd597f8f9fc9 Mon Sep 17 00:00:00 2001 From: Axlefublr <101342105+Axlefublr@users.noreply.github.com> Date: Tue, 18 Feb 2025 00:06:29 +0800 Subject: [PATCH] fix `:yank-joined` disrespecting default-yank-register option (#12890) --- helix-term/src/commands/typed.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/helix-term/src/commands/typed.rs b/helix-term/src/commands/typed.rs index c5c53acd5..00e89d6eb 100644 --- a/helix-term/src/commands/typed.rs +++ b/helix-term/src/commands/typed.rs @@ -978,7 +978,10 @@ fn yank_joined( let doc = doc!(cx.editor); let default_sep = Cow::Borrowed(doc.line_ending.as_str()); let separator = args.first().unwrap_or(&default_sep); - let register = cx.editor.selected_register.unwrap_or('"'); + let register = cx + .editor + .selected_register + .unwrap_or(cx.editor.config().default_yank_register); yank_joined_impl(cx.editor, separator, register); Ok(()) }