summaryrefslogtreecommitdiffstats
path: root/txr.1
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-09-16 20:50:04 -0700
committerKaz Kylheku <kaz@kylheku.com>2015-09-16 20:50:04 -0700
commit0007855e3b1b2114fb95c37ecd2e4daca6046a76 (patch)
tree6599133f8d99819b053a6795f1c032106cbdbef8 /txr.1
parentd8257ec1f490f80b5d168def3cb4e36d969fe526 (diff)
downloadtxr-0007855e3b1b2114fb95c37ecd2e4daca6046a76.tar.gz
txr-0007855e3b1b2114fb95c37ecd2e4daca6046a76.tar.bz2
txr-0007855e3b1b2114fb95c37ecd2e4daca6046a76.zip
linenoise: edit command line in external editor.
* linenoise/linenoise.c (tr, edit_in_editor): New static functions. (edit): edit_in_editor hooked in under Ctrl-X Ctrl-E. * txr.1: Documented.
Diffstat (limited to 'txr.1')
-rw-r--r--txr.124
1 files changed, 24 insertions, 0 deletions
diff --git a/txr.1 b/txr.1
index 8b84e8d2..1314e9f3 100644
--- a/txr.1
+++ b/txr.1
@@ -33630,6 +33630,30 @@ and return to editing the original uncompleted line. Any other input character c
the listener to keep the currently shown completion, and return to edit mode,
where that that character is processed again as a command.
+.NP* Edit with External Editor
+
+The two character command Ctrl-X, Ctrl-E launches an external editor to
+edit the current command line. The command line is stored in a temporary
+file first, and the editor is invoked on this file. When the editor
+terminates, the file is read into the editing buffer.
+
+The editor is determined from the
+.code EDITOR
+environment variable. If this variable doesn't exist,
+the command does nothing.
+
+If the
+.code HOME
+environment variable exists, then the temporary file is created in the home
+directory. Otherwise it is created in the current working directory. If the
+creation of the file fails, then the command silently returns to edit mode.
+
+If the command line contains embedded carriage returns (which denote
+line breaks in multi-line mode) these are replaced with newline characters
+when written out to the file. Conversely, when the edited file is read
+back, its newlines are converted to carriage returns, so that multi-line
+content is handled properly. (See the following section, Multi-Line Mode).
+
.SS* Multi-Line Mode
The listener operates in one of two modes: line mode and multi-line mode. The