mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 11:27:46 +03:00
don't break on hyphen with :reflow (#8569)
This commit is contained in:
parent
764715a6c0
commit
31f50bf5bf
1 changed files with 3 additions and 1 deletions
|
@ -1,7 +1,9 @@
|
||||||
use smartstring::{LazyCompact, SmartString};
|
use smartstring::{LazyCompact, SmartString};
|
||||||
|
use textwrap::{Options, WordSplitter::NoHyphenation};
|
||||||
|
|
||||||
/// Given a slice of text, return the text re-wrapped to fit it
|
/// Given a slice of text, return the text re-wrapped to fit it
|
||||||
/// within the given width.
|
/// within the given width.
|
||||||
pub fn reflow_hard_wrap(text: &str, text_width: usize) -> SmartString<LazyCompact> {
|
pub fn reflow_hard_wrap(text: &str, text_width: usize) -> SmartString<LazyCompact> {
|
||||||
textwrap::refill(text, text_width).into()
|
let options = Options::new(text_width).word_splitter(NoHyphenation);
|
||||||
|
textwrap::refill(text, options).into()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue