mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-27 04:44:30 +00:00
28 lines
521 B
Rust
28 lines
521 B
Rust
use gpui::actions;
|
|
|
|
actions!(
|
|
zed,
|
|
[
|
|
About,
|
|
Hide,
|
|
HideOthers,
|
|
ShowAll,
|
|
Minimize,
|
|
Zoom,
|
|
ToggleFullScreen,
|
|
Quit,
|
|
DebugElements,
|
|
OpenLog,
|
|
OpenLicenses,
|
|
OpenTelemetryLog,
|
|
OpenKeymap,
|
|
OpenSettings,
|
|
OpenLocalSettings,
|
|
OpenDefaultSettings,
|
|
OpenDefaultKeymap,
|
|
IncreaseBufferFontSize,
|
|
DecreaseBufferFontSize,
|
|
ResetBufferFontSize,
|
|
ResetDatabase,
|
|
]
|
|
);
|