Finished refactoring out fs and rope
This commit is contained in:
parent
0a8e2f6bb0
commit
0beb97547e
58 changed files with 328 additions and 223 deletions
|
@ -14,6 +14,7 @@ command_palette = { path = "../command_palette" }
|
|||
editor = { path = "../editor" }
|
||||
gpui = { path = "../gpui" }
|
||||
language = { path = "../language" }
|
||||
rope = { path = "../rope" }
|
||||
search = { path = "../search" }
|
||||
serde = { version = "1.0", features = ["derive", "rc"] }
|
||||
settings = { path = "../settings" }
|
||||
|
|
|
@ -13,7 +13,8 @@ use change::init as change_init;
|
|||
use collections::HashSet;
|
||||
use editor::{Autoscroll, Bias, ClipboardSelection, DisplayPoint};
|
||||
use gpui::{actions, MutableAppContext, ViewContext};
|
||||
use language::{AutoindentMode, Point, SelectionGoal};
|
||||
use language::{AutoindentMode, SelectionGoal};
|
||||
use rope::point::Point;
|
||||
use workspace::Workspace;
|
||||
|
||||
use self::{change::change_over, delete::delete_over, yank::yank_over};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue