Skip to content

Multi Line Edit Text View

A text display / editor designed to edit or display a message.

PropertyDescription
textSets the text to display - only useful for read-only and preview, otherwise use a specific module
widthSets the width of a view to display horizontally (default 15)
heightSets the height of a view to display vertically
argNameSets the argument name for the form
modeOne of edit, preview, or read-only. See Mode below
hyperlinksWhen true, URLs in the displayed text are rendered as clickable OSC 8 hyperlinks on supported terminals (IcyTerm, SyncTERM, VTX, and modern *nix terminals). Only active in preview or read-only mode; ignored in edit mode. Defaults to false.

The mode of a multi line edit text view controls how the view behaves. The following modes are allowed:

ModeDescription
editedit the contents of the view
previewpreview the text, including scrolling
read-onlyNo scrolling or editing the view

Example

Configuration fragment (expand to view)
ML1: {
width: 79
argName: message
mode: edit
}

Viewer with clickable hyperlinks:

MT1: {
width: 79
mode: preview
hyperlinks: true
}