zord-gui 0.1.2

A minimal text editor built with GPUI
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,
    ]
);