Fix flipped condition where Helix adds a line ending on open.
This commit is contained in:
parent
38bf9c2576
commit
0cbaa998ce
1 changed files with 1 additions and 1 deletions
|
@ -260,7 +260,7 @@ impl Document {
|
|||
let line_ending = auto_detect_line_ending(&doc).unwrap_or(DEFAULT_LINE_ENDING);
|
||||
|
||||
// add missing newline at the end of file
|
||||
if doc.len_bytes() == 0 || char_is_line_ending(doc.char(doc.len_chars() - 1)) {
|
||||
if doc.len_bytes() == 0 || !char_is_line_ending(doc.char(doc.len_chars() - 1)) {
|
||||
doc.insert(doc.len_chars(), line_ending.as_str());
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue