Complete first iteration of in-app feedback

This commit is contained in:
Joseph Lyons 2023-01-23 00:59:46 -05:00
parent 083986dfae
commit fb2278dc6d
5 changed files with 113 additions and 130 deletions

View file

@ -7,10 +7,9 @@ use serde::Deserialize;
use system_specs::SystemSpecs;
use workspace::Workspace;
// TODO FEEDBACK: This open brownser code is duplicated from the zed crate, where should we refactor it to?
#[derive(Deserialize, Clone, PartialEq)]
struct OpenBrowser {
url: Arc<str>,
pub struct OpenBrowser {
pub url: Arc<str>,
}
impl_actions!(zed, [OpenBrowser]);