2020-06-02 03:57:01 +02:00
|
|
|
#![allow(unused)]
|
2021-02-18 10:35:39 +01:00
|
|
|
pub mod comment;
|
2020-10-20 06:58:34 +02:00
|
|
|
mod diagnostic;
|
2020-09-10 06:55:18 +02:00
|
|
|
pub mod graphemes;
|
2020-10-04 10:15:43 +02:00
|
|
|
mod history;
|
2020-10-14 05:01:41 +02:00
|
|
|
pub mod indent;
|
2020-09-21 11:24:16 +02:00
|
|
|
pub mod macros;
|
2020-09-17 07:57:49 +02:00
|
|
|
mod position;
|
2020-10-06 09:00:23 +02:00
|
|
|
pub mod register;
|
2020-09-28 18:01:27 +02:00
|
|
|
pub mod selection;
|
2020-06-24 20:59:35 +02:00
|
|
|
pub mod state;
|
2020-09-12 12:36:49 +02:00
|
|
|
pub mod syntax;
|
2020-05-25 06:02:21 +02:00
|
|
|
mod transaction;
|
2020-05-20 11:14:51 +02:00
|
|
|
|
2021-02-18 10:34:22 +01:00
|
|
|
pub(crate) fn find_first_non_whitespace_char2(line: RopeSlice) -> Option<usize> {
|
|
|
|
// find first non-whitespace char
|
2021-02-18 10:45:41 +01:00
|
|
|
for (start, ch) in line.chars().enumerate() {
|
2021-02-18 10:34:22 +01:00
|
|
|
// TODO: could use memchr with chunks?
|
|
|
|
if ch != ' ' && ch != '\t' && ch != '\n' {
|
|
|
|
return Some(start);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
None
|
|
|
|
}
|
|
|
|
pub(crate) fn find_first_non_whitespace_char(text: RopeSlice, line_num: usize) -> Option<usize> {
|
|
|
|
let line = text.line(line_num);
|
|
|
|
let mut start = text.line_to_char(line_num);
|
|
|
|
|
|
|
|
// find first non-whitespace char
|
|
|
|
for ch in line.chars() {
|
|
|
|
// TODO: could use memchr with chunks?
|
|
|
|
if ch != ' ' && ch != '\t' && ch != '\n' {
|
|
|
|
return Some(start);
|
|
|
|
}
|
|
|
|
start += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
None
|
|
|
|
}
|
|
|
|
|
2020-06-05 07:02:10 +02:00
|
|
|
pub use ropey::{Rope, RopeSlice};
|
2020-09-28 18:00:35 +02:00
|
|
|
|
2020-05-28 07:45:44 +02:00
|
|
|
pub use tendril::StrTendril as Tendril;
|
|
|
|
|
2020-09-28 18:01:27 +02:00
|
|
|
#[doc(inline)]
|
|
|
|
pub use {regex, tree_sitter};
|
|
|
|
|
2020-09-17 07:57:49 +02:00
|
|
|
pub use position::Position;
|
2020-09-19 16:16:00 +02:00
|
|
|
pub use selection::Range;
|
2020-05-25 06:02:21 +02:00
|
|
|
pub use selection::Selection;
|
2020-09-17 07:57:49 +02:00
|
|
|
pub use syntax::Syntax;
|
2020-05-25 06:02:21 +02:00
|
|
|
|
2020-10-20 06:58:34 +02:00
|
|
|
pub use diagnostic::Diagnostic;
|
2020-10-04 10:15:43 +02:00
|
|
|
pub use history::History;
|
2020-05-25 06:02:21 +02:00
|
|
|
pub use state::State;
|
|
|
|
|
2020-10-23 11:48:03 +02:00
|
|
|
pub use transaction::{Assoc, Change, ChangeSet, Operation, Transaction};
|