This commit is contained in:
Joseph Lyons 2023-01-20 16:56:56 -05:00
parent bec03dc882
commit c1934d6232
5 changed files with 137 additions and 61 deletions

View file

@ -1,6 +1,6 @@
use std::sync::Arc;
pub mod feedback_popover;
pub mod feedback_editor;
mod system_specs;
use gpui::{actions, impl_actions, ClipboardItem, ViewContext};
use serde::Deserialize;
@ -21,7 +21,7 @@ actions!(
);
pub fn init(cx: &mut gpui::MutableAppContext) {
feedback_popover::init(cx);
feedback_editor::init(cx);
cx.add_global_action(move |action: &OpenBrowser, cx| cx.platform().open_url(&action.url));
@ -59,7 +59,4 @@ pub fn init(cx: &mut gpui::MutableAppContext) {
});
},
);
// TODO FEEDBACK: Should I put Give Feedback action here?
// TODO FEEDBACK: Disble buffer search?
}