summaryrefslogtreecommitdiffstats
path: root/txr.1
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-09-17 06:31:26 -0700
committerKaz Kylheku <kaz@kylheku.com>2015-09-17 06:31:26 -0700
commita5ce85ec38c7cb6e4e11e599fb9ed37c871947c1 (patch)
tree785a66a6e1c0b317c494a4f8dee0367b8a78abb4 /txr.1
parent4e9ce389c2ccb3677957c7903bb633ebb503f394 (diff)
downloadtxr-a5ce85ec38c7cb6e4e11e599fb9ed37c871947c1.tar.gz
txr-a5ce85ec38c7cb6e4e11e599fb9ed37c871947c1.tar.bz2
txr-a5ce85ec38c7cb6e4e11e599fb9ed37c871947c1.zip
Listener configuration variables.
* linenoise/linenoise.c (lino_get_multiline): New function. * linenoise/linenoise.h (lino_get_multiline): Declared. * parser.c (listener_hist_len, listener_multi_line_p_s): New symbol global variables. (repl): Set linenoise history length and multi-line mode from the *listener-hist-len* and *listener-multi-line-p* variables on each call. Set the *listener-multi-line* variable from the lino_t object's current state after each linenoise call. (parse_init): Initialize new global variables and register them as special variables. * txr.1: Update sentence which says that history is fixed at 100 lines. Document listener configuration variables.
Diffstat (limited to 'txr.1')
-rw-r--r--txr.146
1 files changed, 39 insertions, 7 deletions
diff --git a/txr.1 b/txr.1
index dc5df8d9..508e5038 100644
--- a/txr.1
+++ b/txr.1
@@ -33487,11 +33487,13 @@ or a command character.
.NP* History Recall
-The most recent one hundred lines submitted to the interactive listener are
+By default, the most recent 500 lines submitted to the interactive listener are
remembered in a history. This history is available for recall, making it
-convenient to repair mistakes, or compose new lines which are based on
-previous lines. Note that the the history suppresses consecutive duplicate
-lines.
+convenient to repair mistakes, or compose new lines which are based on previous
+lines. Note that the the history suppresses consecutive duplicate lines.
+The number of lines retained may be customized using the
+.code *listener-hist-len*
+variable.
If the up arrow is used while editing a line, the contents of the line are
placed into a temporary save area. The line display is then updated to
@@ -33627,8 +33629,12 @@ 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
-default operation on start-up is line mode. It is possible to toggle between
+The listener operates in one of two modes: line mode and multi-line mode.
+This is determined by the special variable
+.code *listener-multi-line-p*
+whose default value is
+.code nil
+(line mode). It is possible to toggle between
line mode and multi-line mode using the Ctrl-J command.
In line mode, all input given to a single prompt appears to be on a single
@@ -33738,7 +33744,6 @@ environment variable. If this variable doesn't exist, or the user doesn't
have permissions to write to this directory or to an existing history file
in that directory, then the history isn't saved.
-
.SS* Parenthesis Matching
A feature of the listener is visual parenthesis matching in the form of a
@@ -33761,6 +33766,33 @@ lexical conventions and syntax of the \*(TL programming language. For
instance, a closing parenthesis outside a string literal may match
match an opening one inside a string literal.
+.SS* Listener Configuration Variables
+
+The listener's behavior can be influenced through values of certain
+global variables. The settings can be made persistent by means
+of setting these variables in the interactive profile file.
+
+.coNP Special variable @ *listener-hist-len*
+.desc
+This special variable determines how many lines of history are
+retained by the listener. Changing this variable from within the listener
+has an instant effect. If the number is reduced from its current value,
+history lines are immediately discarded. The default value is 500.
+.code
+
+.coNP Special variable @ *listener-multi-line-p*
+.desc
+This is a boolean variable which indicates whether the listener is
+in multi-line mode. The default value is
+.codn nil .
+
+Changing this variable from within the listener takes effect
+immediately for the next line of input.
+
+If multi-line mode is toggled interactively from within the listener,
+the variable is updated to reflect the latest state. This happens
+when the command is submitted for evaluation.
+
.SH* DEBUGGER
\*(TX has a simple, crude, built-in debugger. The debugger is invoked by adding
the