Rename rpc_client -> client
Co-Authored-By: Nathan Sobo <nathan@zed.dev>
This commit is contained in:
parent
2f0212ee98
commit
94209d2b6d
26 changed files with 148 additions and 155 deletions
|
@ -23,6 +23,7 @@ pub use point::*;
|
|||
#[cfg(any(test, feature = "test-support"))]
|
||||
pub use random_char_iter::*;
|
||||
pub use rope::{Chunks, Rope, TextSummary};
|
||||
use rpc::proto;
|
||||
use seahash::SeaHasher;
|
||||
pub use selection::*;
|
||||
use similar::{ChangeTag, TextDiff};
|
||||
|
@ -40,10 +41,9 @@ use std::{
|
|||
sync::Arc,
|
||||
time::{Duration, Instant, SystemTime, UNIX_EPOCH},
|
||||
};
|
||||
use sum_tree::{self, Bias, FilterCursor, SumTree};
|
||||
use sum_tree::{Bias, FilterCursor, SumTree};
|
||||
pub use syntax_theme::SyntaxTheme;
|
||||
use tree_sitter::{InputEdit, Parser, QueryCursor};
|
||||
use rpc::proto;
|
||||
|
||||
pub trait File {
|
||||
fn worktree_id(&self) -> usize;
|
||||
|
|
|
@ -2,7 +2,7 @@ use super::Point;
|
|||
use arrayvec::ArrayString;
|
||||
use smallvec::SmallVec;
|
||||
use std::{cmp, ops::Range, str};
|
||||
use sum_tree::{self, Bias, SumTree};
|
||||
use sum_tree::{Bias, SumTree};
|
||||
|
||||
#[cfg(test)]
|
||||
const CHUNK_BASE: usize = 6;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue