lib.rs

 1use gpui::{action, actions};
 2
 3actions!(
 4    About,
 5    DebugElements,
 6    DecreaseBufferFontSize,
 7    Hide,
 8    HideOthers,
 9    IncreaseBufferFontSize,
10    Minimize,
11    OpenDefaultKeymap,
12    OpenDefaultSettings,
13    OpenKeymap,
14    OpenLicenses,
15    OpenLocalSettings,
16    OpenLog,
17    OpenSettings,
18    OpenTelemetryLog,
19    Quit,
20    ResetBufferFontSize,
21    ResetDatabase,
22    ShowAll,
23    ToggleFullScreen,
24    Zoom,
25);
26
27#[action]
28pub struct OpenBrowser {
29    pub url: String,
30}
31#[action]
32pub struct OpenZedURL {
33    pub url: String,
34}