Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-term/src/commands.rs')
| -rw-r--r-- | helix-term/src/commands.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index 3c93ae7f..3b906487 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -4780,7 +4780,7 @@ fn join_selections_impl(cx: &mut Context, select_space: bool) { changes.reserve(lines.len()); let first_line_idx = slice.line_to_char(start); - let first_line_idx = skip_while(slice, first_line_idx, |ch| matches!(ch, ' ' | 't')) + let first_line_idx = skip_while(slice, first_line_idx, |ch| matches!(ch, ' ' | '\t')) .unwrap_or(first_line_idx); let first_line = slice.slice(first_line_idx..); let mut current_comment_token = comment_tokens |