Skip to main content

Interactive Shell

Laurence MorganAbout 3 min

Interactive Shell

What's different about Murex's interactive shell?

Overview

Aside from Murex being carefully designed with scripting in mind, the interactive shell itself is also built around productivity. To achieve this we wrote our own readline library. Below is an example of that library in use:

asciicastopen in new window

The above demo includes the following features of Murex's bespoke readline library:

  • hint text - blue status text below the prompt (the colour is configurable)
  • syntax highlighting (albeit there isn’t much syntax to highlight in the example). This can also be turned off if your preference is to have colours disabled
  • tab-completion in gridded mode (seen when typing cd)
  • tab-completion in list view (seen when selecting a process name to kill where the process ID was substituted when selected)
  • searching through the tab-completion suggestions (seen in both cd and kill - enabled by pressing [ctrl]+[f])
  • line editing using $EDITOR (vi in the example - enabled by pressing [esc] followed by [v])
  • readline’s warning before pasting multiple lines of data into the buffer and the preview option that’s available as part of the aforementioned warning
  • and VIM keys (enabled by pressing [esc])

readline

Murex uses a custom readline library to enable support for new features on in addition to the existing uses you'd normally expect from a shell. It is because of this Murex provides one of the best user experiences of any of the shells available today.

Hotkeys

A full breakdown of supported hotkeys is available at terminal-keys.md.

Autocompletion

Autocompletion happen when you press [tab] and will differ slightly depending on what is defined in autocomplete and whether you use the traditional POSIX pipe token, |, or the arrow pipe, ->.

The | token will behave much like any other shell however -> will offer suggestions with matching data types (as seen in runtime --methods). This is a way of helping highlight commands that naturally follow after another in a pipeline. Which is particularly important in Murex as it introduces data types and dozens of new builtins specifically for working with data structures in an intelligent and readable yet succinct way.

You can add your own commands and functions to Murex as methods by defining them with method. For example if we were to add jq as a method:

method: define jq {
    "Stdin":  "json",
    "Stdout": "@Any"
}

Syntax Completion

Like with most IDEs, Murex will auto close brackets et al.

asciicastopen in new window

Syntax Highlighting

Pipelines in the interactive terminal are syntax highlighted. This is similar to what one expects from an IDE.

Syntax highlighting can be disabled by running:

config: set shell syntax-highlighting off

Spellchecker

Murex supports inline spellchecking, where errors are underlined. For example

asciicastopen in new window

This might require some manual steps to enable, please see the spellcheck user guide for more details.

Hint Text

The hint text is a (typically) blue status line that appears directly below your prompt. The idea behind the hint text is to provide clues to you as type instructions into the prompt; but without adding distractions. It is there to be used if you want it while keeping out of the way when you don't want it.

Configuring Hint Text Colour

By default the hint text will appear blue. This is also customizable:

» config get shell hint-text-formatting
{BLUE}

The formatting config takes a string and supports ANSI constants.

It is also worth noting that if colour is disabled then the hint text will not be coloured even if hint-text-formatting includes colour codes:

» config: set shell color false

(please note that syntax highlighting is unaffected by the above config)

Custom Hint Text Statuses

There is a lot of behavior hardcoded into Murex like displaying the full path to executables and the values of variables. However if there is no status to be displayed then Murex can fallback to a default hint text status. This default is a user defined function. At time of writing this document the author has the following function defined:

    config: set shell hint-text-func {
        trypipe <!null> {
            git status --porcelain -b -> set gitstatus
            $gitstatus -> head -n1 -> regexp 's/^## //' -> regexp 's/\.\.\./ => /'
        }
        catch {
            out "Not a git repository."
        }
    }

...which produces a colorized status that looks something like the following:

develop => origin/develop

Disabling Hint Text

It is enabled by default but can be disabled if you prefer a more minimal prompt:

» config: set shell hint-text-enabled false

See Also

Last update:
Contributors: Olivier Refalo