Skip to content

Commit

Permalink
Configure ropey to only use CR/CRLF line breaks by default
Browse files Browse the repository at this point in the history
Fixes #1643
  • Loading branch information
archseer committed Mar 17, 2022
1 parent 59f0508 commit b4a282f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion helix-core/Cargo.toml
Expand Up @@ -11,12 +11,13 @@ homepage = "https://helix-editor.com"
include = ["src/**/*", "README.md"]

[features]
unicode-lines = ["ropey/unicode_lines"]

[dependencies]
helix-loader = { version = "0.6", path = "../helix-loader" }

# ropey = "1.3"
ropey = { git = "https://github.com/cessen/ropey" }
ropey = { git = "https://github.com/cessen/ropey", default-features = false, features = ["cr_lines"] }
smallvec = "1.8"
smartstring = "1.0.0"
unicode-segmentation = "1.9"
Expand Down

0 comments on commit b4a282f

Please sign in to comment.