Give default document a single line ending.
This commit is contained in:
parent
e6e0d31be0
commit
e191a75e33
1 changed files with 5 additions and 2 deletions
|
@ -1080,7 +1080,7 @@ impl Document {
|
|||
|
||||
impl Default for Document {
|
||||
fn default() -> Self {
|
||||
let text = Rope::from("");
|
||||
let text = Rope::from(DEFAULT_LINE_ENDING.as_str());
|
||||
Self::from(text, None)
|
||||
}
|
||||
}
|
||||
|
@ -1205,7 +1205,10 @@ mod test {
|
|||
|
||||
#[test]
|
||||
fn test_line_ending() {
|
||||
assert_eq!(Document::default().text().to_string(), "");
|
||||
assert_eq!(
|
||||
Document::default().text().to_string(),
|
||||
DEFAULT_LINE_ENDING.as_str()
|
||||
);
|
||||
}
|
||||
|
||||
macro_rules! test_decode {
|
||||
|
|
Loading…
Add table
Reference in a new issue