aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Hrastnik2021-06-16 15:22:55 +0000
committerJan Hrastnik2021-06-16 15:22:55 +0000
commit9c3eadb2e4fd297abcc8ceb02b3088ab3b9b1ceb (patch)
tree7003028a66d30cadf14c997bf7c6fa9986f10044
parent7cf0fa05a4ca6bf62d38836f3aa99a1ac585a261 (diff)
fixed some problems from rebasing
-rw-r--r--helix-term/src/commands.rs22
-rw-r--r--helix-view/src/document.rs17
2 files changed, 8 insertions, 31 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs
index 31e80345..644c2e23 100644
--- a/helix-term/src/commands.rs
+++ b/helix-term/src/commands.rs
@@ -4,14 +4,9 @@ use helix_core::{
movement::{self, Direction},
object, pos_at_coords,
regex::{self, Regex},
-<<<<<<< HEAD
register::{self, Register, Registers},
- search, selection, Change, ChangeSet, Position, Range, Rope, RopeSlice, Selection, SmallVec,
- Tendril, Transaction,
-=======
- register, search, selection, Change, ChangeSet, LineEnding, Position, Range, Rope, RopeSlice,
- Selection, SmallVec, Tendril, Transaction,
->>>>>>> 856fd95 (trying out line ending helper functions in commands.rs)
+ search, selection, Change, ChangeSet, LineEnding, Position, Range, Rope, RopeSlice, Selection,
+ SmallVec, Tendril, Transaction,
};
use helix_view::{
@@ -348,7 +343,7 @@ where
KeyEvent {
code: KeyCode::Enter,
..
- } => '\n',
+ } => '\n',
KeyEvent {
code: KeyCode::Char(ch),
..
@@ -2285,15 +2280,10 @@ fn paste_impl(
.unwrap(),
);
-<<<<<<< HEAD
// if any of values ends \n it's linewise paste
- let linewise = values.iter().any(|value| value.ends_with('\n'));
-=======
- // if any of values ends \n it's linewise paste
- let linewise = values
- .iter()
- .any(|value| value.ends_with(doc.line_ending()));
->>>>>>> 856fd95 (trying out line ending helper functions in commands.rs)
+ let linewise = values
+ .iter()
+ .any(|value| value.ends_with(doc.line_ending()));
let mut values = values.iter().cloned().map(Tendril::from).chain(repeat);
diff --git a/helix-view/src/document.rs b/helix-view/src/document.rs
index c15a42ab..bf26d8a0 100644
--- a/helix-view/src/document.rs
+++ b/helix-view/src/document.rs
@@ -5,7 +5,9 @@ use std::path::{Component, Path, PathBuf};
use std::sync::Arc;
use helix_core::{
+ auto_detect_line_ending,
chars::{char_is_linebreak, char_is_whitespace},
+ history::History,
syntax::{LanguageConfiguration, LOADER},
ChangeSet, Diagnostic, LineEnding, Rope, Selection, State, Syntax, Transaction,
DEFAULT_LINE_ENDING,
@@ -28,21 +30,6 @@ pub enum IndentStyle {
Spaces(u8),
}
-/// Represents one of the valid Unicode line endings.
-/// Also acts as an index into `LINE_ENDINGS`.
-#[derive(PartialEq, Copy, Clone, Debug)]
-pub enum LineEnding {
- None = 0, // No line ending
- Crlf = 1, // CarriageReturn followed by LineFeed
- LF = 2, // U+000A -- LineFeed
- VT = 3, // U+000B -- VerticalTab
- FF = 4, // U+000C -- FormFeed
- CR = 5, // U+000D -- CarriageReturn
- Nel = 6, // U+0085 -- NextLine
- LS = 7, // U+2028 -- Line Separator
- PS = 8, // U+2029 -- ParagraphSeparator
-}
-
pub struct Document {
// rope + selection
pub(crate) id: DocumentId,