first pass of merging in warp (doesn't build)

This commit is contained in:
Ryan Ward
2026-07-01 16:08:58 -05:00
parent 2f64909469
commit 4770ac06b5
3662 changed files with 414574 additions and 89772 deletions
+3 -5
View File
@@ -2,14 +2,12 @@
use std::ops::Range;
use galaxyui::text::TextBuffer;
use galaxyui_core::text::TextBuffer;
use itertools::Itertools;
use string_offset::CharOffset;
use crate::{
vim::{BracketChar, BracketEnd, BracketType},
vim_find_matching_bracket,
};
use crate::vim::{BracketChar, BracketEnd, BracketType};
use crate::vim_find_matching_bracket;
/// Vim's block-based text objects, e.g. `di{`. This includes a string of text enclosed by any pair
/// of [`BracketType`], not including the brackets themselves.
+2 -1
View File
@@ -1,6 +1,7 @@
use super::*;
use unindent::Unindent;
use super::*;
const BLOCK: &str = "match BracketChar::try_from(c) {
Ok(bracket) => todo!(),
Err(_) => {
+2 -1
View File
@@ -7,7 +7,8 @@ mod paragraph;
mod quote;
mod word;
pub use self::block::*;
pub use paragraph::*;
pub use quote::*;
pub use word::*;
pub use self::block::*;
+1 -1
View File
@@ -1,6 +1,6 @@
use std::ops::Range;
use galaxyui::text::TextBuffer;
use galaxyui_core::text::TextBuffer;
use string_offset::CharOffset;
use crate::{find_next_paragraph_end, find_previous_paragraph_start};
+1 -1
View File
@@ -1,6 +1,6 @@
use std::ops::Range;
use galaxyui::text::TextBuffer;
use galaxyui_core::text::TextBuffer;
use itertools::Itertools;
use string_offset::CharOffset;
+3 -2
View File
@@ -1,9 +1,10 @@
use std::ops::Range;
use galaxyui::text::TextBuffer;
use galaxyui_core::text::TextBuffer;
use string_offset::CharOffset;
use crate::{vim::WordType, word_iterator::CharacterKind};
use crate::vim::WordType;
use crate::word_iterator::CharacterKind;
/// Vim's "inner word" text object, e.g. `diw`. This includes the series of either word chars,
/// symbols, or whitespace around the cursor.