mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 03:17:45 +03:00
refactor completion and signature help using hooks
This commit is contained in:
parent
13ed4f6c47
commit
8e592a151f
19 changed files with 1022 additions and 560 deletions
|
@ -14,6 +14,7 @@ homepage.workspace = true
|
|||
[dependencies]
|
||||
dunce = "1.0"
|
||||
etcetera = "0.8"
|
||||
ropey = { version = "1.6.1", default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
tempfile = "3.9"
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
pub mod env;
|
||||
pub mod path;
|
||||
pub mod rope;
|
||||
|
|
26
helix-stdx/src/rope.rs
Normal file
26
helix-stdx/src/rope.rs
Normal file
|
@ -0,0 +1,26 @@
|
|||
use ropey::RopeSlice;
|
||||
|
||||
pub trait RopeSliceExt: Sized {
|
||||
fn ends_with(self, text: &str) -> bool;
|
||||
fn starts_with(self, text: &str) -> bool;
|
||||
}
|
||||
|
||||
impl RopeSliceExt for RopeSlice<'_> {
|
||||
fn ends_with(self, text: &str) -> bool {
|
||||
let len = self.len_bytes();
|
||||
if len < text.len() {
|
||||
return false;
|
||||
}
|
||||
self.get_byte_slice(len - text.len()..)
|
||||
.map_or(false, |end| end == text)
|
||||
}
|
||||
|
||||
fn starts_with(self, text: &str) -> bool {
|
||||
let len = self.len_bytes();
|
||||
if len < text.len() {
|
||||
return false;
|
||||
}
|
||||
self.get_byte_slice(..len - text.len())
|
||||
.map_or(false, |start| start == text)
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue