onPreview

Full screen previews for files and command documentation

Description

Murex’s readline API supports full screen previews. For example when autocompleting command line parameters, if that parameter is a file then Murex can preview the contents if it is a text file or even an image.

This preview can also provide guides to command usage. Such as man pages or AI generated cheatsheets.

Usage

event onPreview name=(function|builtin|exec) { code block }

!event onPreview name[.function|.builtin|.exec]

Valid Interrupts

Payload

The following payload is passed to the function via stdin:

{
    "Name": "",
    "Interrupt": {
        "Name": "",
        "Operation": "",
        "PreviewItem": "",
        "CmdLine": "",
        "Width": 80
    }
}

Name

This is the namespaced name – ie the name and operation.

Interrupt/Name

This is the name you specified when defining the event.

Interrupt/Operation

This is the interrupt you specified when defining the event.

Valid interrupt operation values are specified below.

Interrupt/PreviewItem

This will be the command name. For example if the command line is sudo apt-get update then the PreviewItem value will be sudo.

Interrupt/CmdLine

This is the full command line in the preview prompt (ie what you’ve typed).

Interrupt/Width

Width of the preview pane. Please note that this will differ from the terminal width due to borders surrounding the preview pane.

Event Return

$EVENT_RETURN, is a special variable that stores a writable structure to return back to the event caller.

The $EVENT_RETURN values available for this event are:

{
    "CacheCmdLine": false,
    "CacheTTL": 2592000,
    "Display": true,
}

$EVENT_RETURN.CacheCmdLine

Should the cache be unique to the command or include the full command line? You would generally only want CacheCmdLine to be true if the generated preview is unique to the full command line (eg an AI generated page based on the full command line) vs only specific to the command name (eg a man page).

$EVENT_RETURN.CacheTTL

This just defines how long to cache the results for this onPreview event for faster loading of onPreview events in the future.

CacheTTL takes an integer and is measured in seconds. It’s default value is 30 days.

$EVENT_RETURN.Display

Defines whenever to output this event invocation.

Defaults to true.

Examples

Creating a basic event

event onPreview example=exec {
    -> set event
    out "Preview event for $(event.Interrupt.PreviewItem)"
    
    $EVENT_RETURN.CacheTTL = 0 # don't cache this response.
}

ChatGPT

Murex’s ChatGPT integration also uses this event. The source code can be found on Github, of viewed from the terminal via:

runtime --events -> [[ /onPreview/chatgpt.exec/Block ]]

Detail

Standard out and error

Stdout and stderr are both written to the preview pane. Output is stripped or any ANSI escape sequences and stderr isn’t written in red.

Order of execution

Interrupts are run in alphabetical order. So an event named “alfa” would run before an event named “zulu”. If you are writing multiple events and the order of execution matters, then you can prefix the names with a number, eg 10_jump

Namespacing

This event is namespaced as $(NAME).$(OPERATION).

For example, if an event in onPrompt was defined as example=eof then its namespace would be example.eof and thus a subsequent event with the same name but different operation, eg example=abort, would not overwrite the former event defined against the interrupt eof.

The reason for this namespacing is because you might legitimately want the same name for different operations (eg a smart prompt that has elements triggered from different interrupts).

See Also


This document was generated from builtins/events/onPreview/onpreview_doc.yaml.

This site's content is rebuilt automatically from murex's source code after each merge to the master branch. Downloadable murex binaries are also built with the website.

Last built on Thu Aug 15 14:38:34 UTC 2024 against commit 50ed9d650ed9d6df391240d3c2c02e623636e508dfcdad1.

Current version is 6.2.4000 which has been verified against tests cases.