ran cargo clippy and cargo fmt

imgbot
Jan Hrastnik 3 years ago
parent 3756c21bae
commit 17f69a03e0

@ -100,11 +100,11 @@ pub use unicode_general_category::get_general_category;
#[doc(inline)] #[doc(inline)]
pub use {regex, tree_sitter}; pub use {regex, tree_sitter};
pub use graphemes::RopeGraphemes;
pub use position::{coords_at_pos, pos_at_coords, Position}; pub use position::{coords_at_pos, pos_at_coords, Position};
pub use selection::{Range, Selection}; pub use selection::{Range, Selection};
pub use smallvec::SmallVec; pub use smallvec::SmallVec;
pub use syntax::Syntax; pub use syntax::Syntax;
pub use graphemes::RopeGraphemes;
pub use diagnostic::Diagnostic; pub use diagnostic::Diagnostic;
pub use state::State; pub use state::State;

@ -8,7 +8,8 @@ use helix_core::{
chars::{char_is_linebreak, char_is_whitespace}, chars::{char_is_linebreak, char_is_whitespace},
history::History, history::History,
syntax::{LanguageConfiguration, LOADER}, syntax::{LanguageConfiguration, LOADER},
ChangeSet, Diagnostic, History, Rope, RopeSlice, RopeGraphemes, Selection, State, Syntax, Transaction, ChangeSet, Diagnostic, History, Rope, RopeGraphemes, RopeSlice, Selection, State, Syntax,
Transaction,
}; };
use crate::{DocumentId, ViewId}; use crate::{DocumentId, ViewId};
@ -34,12 +35,12 @@ pub enum IndentStyle {
#[derive(PartialEq, Copy, Clone, Debug)] #[derive(PartialEq, Copy, Clone, Debug)]
pub enum LineEnding { pub enum LineEnding {
None = 0, // No line ending None = 0, // No line ending
CRLF = 1, // CarriageReturn followed by LineFeed Crlf = 1, // CarriageReturn followed by LineFeed
LF = 2, // U+000A -- LineFeed LF = 2, // U+000A -- LineFeed
VT = 3, // U+000B -- VerticalTab VT = 3, // U+000B -- VerticalTab
FF = 4, // U+000C -- FormFeed FF = 4, // U+000C -- FormFeed
CR = 5, // U+000D -- CarriageReturn CR = 5, // U+000D -- CarriageReturn
NEL = 6, // U+0085 -- NextLine Nel = 6, // U+0085 -- NextLine
LS = 7, // U+2028 -- Line Separator LS = 7, // U+2028 -- Line Separator
PS = 8, // U+2029 -- ParagraphSeparator PS = 8, // U+2029 -- ParagraphSeparator
} }
@ -77,7 +78,7 @@ pub struct Document {
diagnostics: Vec<Diagnostic>, diagnostics: Vec<Diagnostic>,
language_server: Option<Arc<helix_lsp::Client>>, language_server: Option<Arc<helix_lsp::Client>>,
line_ending: LineEnding _line_ending: LineEnding,
} }
use std::fmt; use std::fmt;
@ -166,31 +167,29 @@ pub fn canonicalize_path(path: &Path) -> std::io::Result<PathBuf> {
pub fn auto_detect_line_ending(doc: &Rope) -> LineEnding { pub fn auto_detect_line_ending(doc: &Rope) -> LineEnding {
// based on https://github.com/cessen/led/blob/27572c8838a1c664ee378a19358604063881cc1d/src/editor/mod.rs#L88-L162 // based on https://github.com/cessen/led/blob/27572c8838a1c664ee378a19358604063881cc1d/src/editor/mod.rs#L88-L162
let mut ending = LineEnding::None; let mut ending = LineEnding::None;
for line in doc.lines().take(1) { // check first line only - unsure how sound this is for line in doc.lines().take(1) { // check first line only - unsure how sound this is
// Get the line ending ending = match line.len_chars() {
ending = if line.len_chars() == 1 { 1 => { let g = RopeGraphemes::new(line.slice((line.len_chars() - 1)..))
let g = RopeGraphemes::new(line.slice((line.len_chars() - 1)..)) .last()
.last() .unwrap();
.unwrap(); rope_slice_to_line_ending(&g)}
rope_slice_to_line_ending(&g) n if n > 1 => { let g = RopeGraphemes::new(line.slice((line.len_chars() - 2)..))
} else if line.len_chars() > 1 { .last()
let g = RopeGraphemes::new(line.slice((line.len_chars() - 2)..)) .unwrap();
.last() rope_slice_to_line_ending(&g) }
.unwrap(); _ => LineEnding::None
rope_slice_to_line_ending(&g)
} else {
LineEnding::None
};
} }
ending }
ending
} }
pub fn rope_slice_to_line_ending(g: &RopeSlice) -> LineEnding { pub fn rope_slice_to_line_ending(g: &RopeSlice) -> LineEnding {
if let Some(text) = g.as_str() { if let Some(text) = g.as_str() {
str_to_line_ending(text) str_to_line_ending(text)
} else if g == "\u{000D}\u{000A}" { } else if g == "\u{000D}\u{000A}" {
LineEnding::CRLF LineEnding::Crlf
} else { } else {
// Not a line ending // Not a line ending
LineEnding::None LineEnding::None
@ -199,12 +198,12 @@ pub fn rope_slice_to_line_ending(g: &RopeSlice) -> LineEnding {
pub fn str_to_line_ending(g: &str) -> LineEnding { pub fn str_to_line_ending(g: &str) -> LineEnding {
match g { match g {
"\u{000D}\u{000A}" => LineEnding::CRLF, "\u{000D}\u{000A}" => LineEnding::Crlf,
"\u{000A}" => LineEnding::LF, "\u{000A}" => LineEnding::LF,
"\u{000B}" => LineEnding::VT, "\u{000B}" => LineEnding::VT,
"\u{000C}" => LineEnding::FF, "\u{000C}" => LineEnding::FF,
"\u{000D}" => LineEnding::CR, "\u{000D}" => LineEnding::CR,
"\u{0085}" => LineEnding::NEL, "\u{0085}" => LineEnding::Nel,
"\u{2028}" => LineEnding::LS, "\u{2028}" => LineEnding::LS,
"\u{2029}" => LineEnding::PS, "\u{2029}" => LineEnding::PS,
@ -217,7 +216,7 @@ use helix_lsp::lsp;
use url::Url; use url::Url;
impl Document { impl Document {
pub fn new(text: Rope, line_ending: LineEnding) -> Self { pub fn new(text: Rope, _line_ending: LineEnding) -> Self {
let changes = ChangeSet::new(&text); let changes = ChangeSet::new(&text);
let old_state = None; let old_state = None;
@ -238,7 +237,7 @@ impl Document {
history: Cell::new(History::default()), history: Cell::new(History::default()),
last_saved_revision: 0, last_saved_revision: 0,
language_server: None, language_server: None,
line_ending: line_ending _line_ending
} }
} }

@ -1,4 +1,6 @@
use crate::{theme::Theme, tree::Tree, Document, DocumentId, RegisterSelection, View, ViewId, LineEnding}; use crate::{
theme::Theme, tree::Tree, Document, DocumentId, LineEnding, RegisterSelection, View, ViewId,
};
use tui::layout::Rect; use tui::layout::Rect;
use tui::terminal::CursorKind; use tui::terminal::CursorKind;

Loading…
Cancel
Save