From f78b55f92d860adb17b9280b968965358b31e602 Mon Sep 17 00:00:00 2001 From: Keith Simmons Date: Thu, 9 Jun 2022 17:31:31 -0700 Subject: [PATCH] wip --- crates/editor/src/editor.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/editor/src/editor.rs b/crates/editor/src/editor.rs index 428958e7693ae6f0ee7b54f6e5d388a214a5fbb3..51ec4efcf8836406337730e7cd17624d28d334d0 100644 --- a/crates/editor/src/editor.rs +++ b/crates/editor/src/editor.rs @@ -2,6 +2,7 @@ pub mod display_map; mod element; mod hover_popover; pub mod items; +mod link_go_to_definition; pub mod movement; mod multi_buffer; pub mod selections_collection; @@ -432,6 +433,7 @@ pub struct Editor { input_enabled: bool, leader_replica_id: Option, hover_state: HoverState, + link_go_to_definition_state: LinkGoToDefinitionState, } pub struct EditorSnapshot {