diff options
author | Blaž Hrastnik | 2021-12-03 03:51:55 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-12-03 03:51:55 +0000 |
commit | 371c84f70bf7cc3e69710dadad31b95b29243926 (patch) | |
tree | efb92b57e64f3b56e079e885c026d9c320ef0a8c /helix-term/src | |
parent | 34f46e7502a562ffb1a3f681046c6cb7e86f7286 (diff) |
cargo fmt
Diffstat (limited to 'helix-term/src')
-rw-r--r-- | helix-term/src/commands.rs | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index 205585d1..8149bd89 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -4444,11 +4444,8 @@ fn yank_joined_to_clipboard_impl( fn yank_joined_to_clipboard(cx: &mut Context) { let line_ending = doc!(cx.editor).line_ending; - let _ = yank_joined_to_clipboard_impl( - cx.editor, - line_ending.as_str(), - ClipboardType::Clipboard, - ); + let _ = + yank_joined_to_clipboard_impl(cx.editor, line_ending.as_str(), ClipboardType::Clipboard); exit_select_mode(cx); } @@ -4478,11 +4475,8 @@ fn yank_main_selection_to_clipboard(cx: &mut Context) { fn yank_joined_to_primary_clipboard(cx: &mut Context) { let line_ending = doc!(cx.editor).line_ending; - let _ = yank_joined_to_clipboard_impl( - cx.editor, - line_ending.as_str(), - ClipboardType::Selection, - ); + let _ = + yank_joined_to_clipboard_impl(cx.editor, line_ending.as_str(), ClipboardType::Selection); } fn yank_main_selection_to_primary_clipboard(cx: &mut Context) { |