Handle line endings correctly in surround
This commit is contained in:
parent
b79b5e66f2
commit
b00e9fc227
2 changed files with 9 additions and 11 deletions
|
@ -3352,7 +3352,15 @@ fn surround_add(cx: &mut Context) {
|
|||
|
||||
let mut changes = Vec::new();
|
||||
for (i, range) in selection.iter().enumerate() {
|
||||
let (from, to) = (range.from(), range.to() + 1);
|
||||
let from = range.from();
|
||||
let line = text.char_to_line(range.to());
|
||||
let max_to = doc.text().len_chars().saturating_sub(
|
||||
get_line_ending(&text.line(line))
|
||||
.map(|le| le.len_chars())
|
||||
.unwrap_or(0),
|
||||
);
|
||||
let to = std::cmp::min(range.to() + 1, max_to);
|
||||
|
||||
changes.push((from, from, Some(Tendril::from_char(open))));
|
||||
changes.push((to, to, Some(Tendril::from_char(close))));
|
||||
}
|
||||
|
|
|
@ -201,16 +201,6 @@ impl Default for Keymaps {
|
|||
|
||||
|
||||
key!('m') => Command::surround,
|
||||
// TODO: refactor into
|
||||
// key!('m') => commands::select_to_matching,
|
||||
// key!('M') => commands::back_select_to_matching,
|
||||
// select mode extend equivalents
|
||||
|
||||
// key!('.') => commands::repeat_insert,
|
||||
// repeat_select
|
||||
|
||||
// TODO: figure out what key to use
|
||||
// key!('[') => Command::expand_selection, ??
|
||||
key!('[') => Command::left_bracket_mode,
|
||||
key!(']') => Command::right_bracket_mode,
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue