lib.rs

 1use gpui::actions;
 2
 3actions!(
 4    zed,
 5    [
 6        About,
 7        Hide,
 8        HideOthers,
 9        ShowAll,
10        Minimize,
11        Zoom,
12        ToggleFullScreen,
13        Quit,
14        DebugElements,
15        OpenLog,
16        OpenLicenses,
17        OpenTelemetryLog,
18        OpenKeymap,
19        OpenSettings,
20        OpenLocalSettings,
21        OpenDefaultSettings,
22        OpenDefaultKeymap,
23        IncreaseBufferFontSize,
24        DecreaseBufferFontSize,
25        ResetBufferFontSize,
26        ResetDatabase,
27    ]
28);