FluidInputAction

Default input actions one can listen to.

Values

ValueMeaning
press

Press the input. Used for example to activate buttons.

submit

Submit input, eg. finish writing in textInput.

cancel

Cancel the input.

contextMenu

Open context menu.

focusPrevious

Focus previous input.

focusNext

Focus next input.

focusLeft

Focus input on the left.

focusRight

Focus input on the right.

focusUp

Focus input above.

focusDown

Focus input below.

breakLine

Start a new text line, place a line feed.

previousChar

Move to the previous character in text.

nextChar

Move to the next character in text.

previousWord

Move to the previous word in text.

nextWord

Move to the next word in text.

previousLine

Move to the previous line in text.

nextLine

Move to the next line in text.

toLineStart

Move to the beginning of this line; Home key.

toLineEnd

Move to the end of this line; End key.

toStart

Move to the beginning.

toEnd

Move to the end.

backspace

Erase last character in an input.

backspaceWord

Erase last a word in an input.

deleteChar

Delete the next character in an input

deleteWord

Delete the next word in an input

copy

Copy selected content.

cut

Cut (copy and delete) selected content.

paste

Paste selected content.

undo

Undo last action.

redo

Redo last action; Reverse "undo".

insertTab

Insert a tab into a code editor (tab key)

indent

Indent current line or selection in a code editor.

outdent

Outdent current line or selection in a code editor (shift+tab).

selectPreviousChar

Select previous character in text.

selectNextChar

Select next character in text.

selectPreviousWord

Select previous word in text.

selectNextWord

Select next word in text.

selectPreviousLine

Select to previous line in text.

selectNextLine

Select to next line in text.

selectAll

Select all in text.

selectToLineStart

Select from here to line beginning.

selectToLineEnd

Select from here to line end.

selectToStart

Select from here to beginning.

selectToEnd

Select from here to end.

entryPrevious

Navigate to the previous list entry.

entryNext

Navigate to the next list entry.

entryUp

Navigate up in a tree, eg. in the file picker.

scrollLeft

Scroll left a bit.

scrollRight

Scroll right a bit.

scrollUp

Scroll up a bit.

scrollDown

Scroll down a bit

pageLeft

Scroll left by a page. Unbound by default.

pageUp

Scroll up by a page.

pageDown

Scroll down by a page.

Meta