pub enum Action {
Show 77 variants
Quit,
ToggleHelp,
OpenCommandLine,
Cancel,
Refresh,
OpenItem,
GoUp,
GoSchedules,
GoWorkflows,
JumpBack,
JumpForward,
MoveDown,
MoveUp,
MoveTop,
MoveBottom,
HalfPageDown,
HalfPageUp,
EnterInsert,
LeaveInsert,
EnterVisual,
EnterVisualLine,
OpenSearch,
SearchNext,
SearchPrev,
FindWorkflow,
FindEvent,
FindPane,
FindCommand,
FindFilter,
FindNamespace,
ProblemList,
YankField,
YankRecord,
YankPayloadAll,
YankPayloadInput,
YankPayloadResult,
LoadMore,
ToggleFold,
ExpandAll,
CollapseAll,
TogglePlumbing,
NextFailure,
PrevFailure,
ToggleFollow,
ToggleDetail,
DetailDown,
DetailUp,
OpenPipe,
OpenEditor,
SplitRight,
SplitDown,
CloseWindow,
EqualizeWindows,
FocusLeft,
FocusRight,
FocusUp,
FocusDown,
GrowLeft,
GrowRight,
GrowUp,
GrowDown,
CancelWorkflow,
TerminateWorkflow,
SignalWorkflow,
DeleteWorkflow,
ResetWorkflow,
UpdateWorkflow,
PauseSchedule,
TriggerSchedule,
DeleteSchedule,
BackfillSchedule,
CreateSchedule,
NewTab,
CloseTab,
NextTab,
PrevTab,
SelectView(char),
}Expand description
What a command does. tmprl-tui matches on this exhaustively.
Variants§
Quit
ToggleHelp
OpenCommandLine
Cancel
Refresh
OpenItem
GoUp
GoSchedules
GoWorkflows
JumpBack
JumpForward
MoveDown
MoveUp
MoveTop
MoveBottom
HalfPageDown
HalfPageUp
EnterInsert
LeaveInsert
EnterVisual
EnterVisualLine
OpenSearch
SearchNext
SearchPrev
FindWorkflow
The <leader>f family. Each opens the one picker over a different set of items.
FindEvent
FindPane
FindCommand
FindFilter
FindNamespace
ProblemList
The failed-and-stuck list, <leader>xx. A query preset, not a screen of its own.
YankField
YankRecord
YankPayloadAll
Yank the payloads under the cursor; the variant picks the subset.
YankPayloadInput
YankPayloadResult
LoadMore
Fetch the next page of the workflow list. Driven by scrolling rather than by a key,
but it is a command so that : and macros reach it like anything else.
ToggleFold
ExpandAll
CollapseAll
TogglePlumbing
NextFailure
PrevFailure
ToggleFollow
ToggleDetail
DetailDown
DetailUp
OpenPipe
OpenEditor
Open what is under the cursor in $EDITOR, <leader>e.
SplitRight
SplitDown
CloseWindow
EqualizeWindows
FocusLeft
FocusRight
FocusUp
FocusDown
GrowLeft
GrowRight
GrowUp
GrowDown
CancelWorkflow
TerminateWorkflow
SignalWorkflow
DeleteWorkflow
ResetWorkflow
UpdateWorkflow
PauseSchedule
TriggerSchedule
DeleteSchedule
BackfillSchedule
CreateSchedule
NewTab
CloseTab
NextTab
PrevTab
SelectView(char)
Apply the saved view bound to this digit. Carries the digit because the views come
from views.toml and cannot be enumerated at compile time.
Trait Implementations§
impl Copy for Action
impl Eq for Action
impl StructuralPartialEq for Action
Auto Trait Implementations§
impl Freeze for Action
impl RefUnwindSafe for Action
impl Send for Action
impl Sync for Action
impl Unpin for Action
impl UnsafeUnpin for Action
impl UnwindSafe for Action
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more