use gpui::actions;
actions!(
editor,
[
Quit,
IncreaseFontSize,
DecreaseFontSize,
ResetFontSize,
Copy,
Paste,
Cut,
Undo,
Redo,
SelectAll,
Newline,
Backspace,
Delete,
DeleteToBeginningOfLine,
DeleteToEndOfLine,
DeleteLine,
MoveToBeginningOfLine,
MoveToEndOfLine,
MoveLeft,
MoveRight,
MoveUp,
MoveDown,
MoveWordLeft,
MoveWordRight,
MoveLineUp,
MoveLineDown,
SelectLeft,
SelectRight,
SelectUp,
SelectDown,
SelectWordLeft,
SelectWordRight,
Tab,
Outdent,
]
);