teditor  1.8.0@@fee5e94
Terminal based editor written in C++
calc-mode

All operations that are supported while under calc-mode

calc

Starts the calculator under calc-mode, if not already done.

Note
Available since v1.7.0

calc::history

Opens a prompt with a list of previoulsy entered commands to quickly search and jump to the command of interest to be shown in the current prompt instead

Note
Available since v1.7.0

.calc::insert-char

Inserts currently pressed char into buffer, at the current calculator line.

Note
Available since v1.7.0
Preceeding . implies that this command is not searchable from the editor command prompt.

calc::enter

Evaluate the current expression and print the result below it.

Note
Available since v1.7.0

calc::backspace-char

Removes the char to the left of the cursor, from the current line.

Note
Available since v1.7.0

calc::delete-char

Removes the char on the cursor, from the current line.

Note
Available since v1.7.0

calc::kill-line

Removes the rest of the line and copies it to the clipboard.

Note
Available since v1.7.0
Currently editor has a notion of clipboard that is separate from the OS provided system clipboard!