Import readline 8.0
[deliverable/binutils-gdb.git] / readline / doc / history.3
CommitLineData
9255ee31
EZ
1.\"
2.\" MAN PAGE COMMENTS to
3.\"
4.\" Chet Ramey
5.\" Information Network Services
6.\" Case Western Reserve University
775e241e 7.\" chet.ramey@case.edu
9255ee31 8.\"
cb41b9e7 9.\" Last Change: Sun Oct 8 11:43:43 EDT 2017
9255ee31 10.\"
cb41b9e7 11.TH HISTORY 3 "2017 October 8" "GNU History 6.3"
9255ee31
EZ
12.\"
13.\" File Name macro. This used to be `.PN', for Path Name,
14.\" but Sun doesn't seem to like that very much.
15.\"
16.de FN
17\fI\|\\$1\|\fP
18..
19.ds lp \fR\|(\fP
20.ds rp \fR\|)\fP
21.\" FnN return-value fun-name N arguments
22.de Fn1
23\fI\\$1\fP \fB\\$2\fP \\*(lp\fI\\$3\fP\\*(rp
24.br
25..
26.de Fn2
27.if t \fI\\$1\fP \fB\\$2\fP \\*(lp\fI\\$3,\|\\$4\fP\\*(rp
28.if n \fI\\$1\fP \fB\\$2\fP \\*(lp\fI\\$3, \\$4\fP\\*(rp
29.br
30..
31.de Fn3
32.if t \fI\\$1\fP \fB\\$2\fP \\*(lp\fI\\$3,\|\\$4,\|\\$5\fP\|\\*(rp
33.if n \fI\\$1\fP \fB\\$2\fP \\*(lp\fI\\$3, \\$4, \\$5\fP\\*(rp
34.br
35..
36.de Vb
37\fI\\$1\fP \fB\\$2\fP
38.br
39..
40.SH NAME
41history \- GNU History Library
42.SH COPYRIGHT
cb41b9e7
TT
43.if t The GNU History Library is Copyright \(co 1989-2017 by the Free Software Foundation, Inc.
44.if n The GNU History Library is Copyright (C) 1989-2017 by the Free Software Foundation, Inc.
9255ee31
EZ
45.SH DESCRIPTION
46Many programs read input from the user a line at a time. The GNU
47History library is able to keep track of those lines, associate arbitrary
48data with each line, and utilize information from previous lines in
49composing new ones.
50.PP
51.SH "HISTORY EXPANSION"
52.PP
53The history library supports a history expansion feature that
54is identical to the history expansion in
55.BR bash.
56This section describes what syntax features are available.
57.PP
58History expansions introduce words from the history list into
59the input stream, making it easy to repeat commands, insert the
60arguments to a previous command into the current input line, or
61fix errors in previous commands quickly.
62.PP
63History expansion is usually performed immediately after a complete line
64is read.
65It takes place in two parts.
66The first is to determine which line from the history list
67to use during substitution.
68The second is to select portions of that line for inclusion into
69the current one.
70The line selected from the history is the \fIevent\fP,
71and the portions of that line that are acted upon are \fIwords\fP.
72Various \fImodifiers\fP are available to manipulate the selected words.
73The line is broken into words in the same fashion as \fBbash\fP
74does when reading input,
75so that several words that would otherwise be separated
76are considered one word when surrounded by quotes (see the
77description of \fBhistory_tokenize()\fP below).
78History expansions are introduced by the appearance of the
79history expansion character, which is \^\fB!\fP\^ by default.
80Only backslash (\^\fB\e\fP\^) and single quotes can quote
81the history expansion character.
82.SS Event Designators
83.PP
84An event designator is a reference to a command line entry in the
85history list.
cc88a640
JK
86Unless the reference is absolute, events are relative to the current
87position in the history list.
9255ee31
EZ
88.PP
89.PD 0
90.TP
91.B !
92Start a history substitution, except when followed by a
93.BR blank ,
94newline, = or (.
95.TP
96.B !\fIn\fR
97Refer to command line
98.IR n .
99.TP
100.B !\-\fIn\fR
cc88a640 101Refer to the current command minus
9255ee31
EZ
102.IR n .
103.TP
104.B !!
105Refer to the previous command. This is a synonym for `!\-1'.
106.TP
107.B !\fIstring\fR
cc88a640
JK
108Refer to the most recent command
109preceding the current position in the history list
110starting with
9255ee31
EZ
111.IR string .
112.TP
113.B !?\fIstring\fR\fB[?]\fR
cc88a640 114Refer to the most recent command
775e241e 115preceding the current position in the history list
cc88a640 116containing
9255ee31
EZ
117.IR string .
118The trailing \fB?\fP may be omitted if
119.I string
120is followed immediately by a newline.
121.TP
122.B \d\s+2^\s-2\u\fIstring1\fP\d\s+2^\s-2\u\fIstring2\fP\d\s+2^\s-2\u
123Quick substitution. Repeat the last command, replacing
124.I string1
125with
126.IR string2 .
127Equivalent to
128``!!:s/\fIstring1\fP/\fIstring2\fP/''
129(see \fBModifiers\fP below).
130.TP
131.B !#
132The entire command line typed so far.
133.PD
134.SS Word Designators
135.PP
136Word designators are used to select desired words from the event.
775e241e 137A
9255ee31
EZ
138.B :
139separates the event specification from the word designator.
140It may be omitted if the word designator begins with a
141.BR ^ ,
142.BR $ ,
143.BR * ,
144.BR \- ,
145or
146.BR % .
147Words are numbered from the beginning of the line,
148with the first word being denoted by 0 (zero).
149Words are inserted into the current line separated by single spaces.
150.PP
151.PD 0
152.TP
153.B 0 (zero)
154The zeroth word. For the shell, this is the command
155word.
156.TP
157.I n
158The \fIn\fRth word.
159.TP
160.B ^
161The first argument. That is, word 1.
162.TP
163.B $
775e241e
TT
164The last word. This is usually the last argument, but will expand to the
165zeroth word if there is only one word in the line.
9255ee31
EZ
166.TP
167.B %
168The word matched by the most recent `?\fIstring\fR?' search.
169.TP
170.I x\fB\-\fPy
171A range of words; `\-\fIy\fR' abbreviates `0\-\fIy\fR'.
172.TP
173.B *
174All of the words but the zeroth. This is a synonym
175for `\fI1\-$\fP'. It is not an error to use
176.B *
177if there is just one
178word in the event; the empty string is returned in that case.
179.TP
180.B x*
181Abbreviates \fIx\-$\fP.
182.TP
183.B x\-
184Abbreviates \fIx\-$\fP like \fBx*\fP, but omits the last word.
185.PD
186.PP
187If a word designator is supplied without an event specification, the
188previous command is used as the event.
189.SS Modifiers
190.PP
191After the optional word designator, there may appear a sequence of
192one or more of the following modifiers, each preceded by a `:'.
193.PP
194.PD 0
195.PP
196.TP
197.B h
198Remove a trailing file name component, leaving only the head.
199.TP
200.B t
201Remove all leading file name components, leaving the tail.
202.TP
203.B r
204Remove a trailing suffix of the form \fI.xxx\fP, leaving the
205basename.
206.TP
207.B e
208Remove all but the trailing suffix.
209.TP
210.B p
211Print the new command but do not execute it.
212.TP
213.B q
214Quote the substituted words, escaping further substitutions.
215.TP
216.B x
217Quote the substituted words as with
218.BR q ,
219but break into words at
220.B blanks
221and newlines.
222.TP
223.B s/\fIold\fP/\fInew\fP/
224Substitute
225.I new
226for the first occurrence of
227.I old
228in the event line. Any delimiter can be used in place of /. The
229final delimiter is optional if it is the last character of the
230event line. The delimiter may be quoted in
231.I old
232and
233.I new
234with a single backslash. If & appears in
235.IR new ,
236it is replaced by
237.IR old .
238A single backslash will quote the &. If
239.I old
240is null, it is set to the last
241.I old
242substituted, or, if no previous history substitutions took place,
243the last
244.I string
245in a
246.B !?\fIstring\fR\fB[?]\fR
247search.
248.TP
249.B &
250Repeat the previous substitution.
251.TP
252.B g
253Cause changes to be applied over the entire event line. This is
254used in conjunction with `\fB:s\fP' (e.g., `\fB:gs/\fIold\fP/\fInew\fP/\fR')
255or `\fB:&\fP'. If used with
256`\fB:s\fP', any delimiter can be used
257in place of /, and the final delimiter is optional
258if it is the last character of the event line.
5bdf8622
DJ
259An \fBa\fP may be used as a synonym for \fBg\fP.
260.TP
261.B G
262Apply the following `\fBs\fP' modifier once to each word in the event line.
9255ee31
EZ
263.PD
264.SH "PROGRAMMING WITH HISTORY FUNCTIONS"
265This section describes how to use the History library in other programs.
266.SS Introduction to History
267.PP
268The programmer using the History library has available functions
269for remembering lines on a history list, associating arbitrary data
270with a line, removing lines from the list, searching through the list
271for a line containing an arbitrary text string, and referencing any line
272in the list directly. In addition, a history \fIexpansion\fP function
273is available which provides for a consistent user interface across
274different programs.
275.PP
276The user using programs written with the History library has the
277benefit of a consistent user interface with a set of well-known
278commands for manipulating the text of previous lines and using that text
279in new commands. The basic history manipulation commands are
280identical to
281the history substitution provided by \fBbash\fP.
282.PP
283If the programmer desires, he can use the Readline library, which
284includes some history manipulation by default, and has the added
285advantage of command line editing.
286.PP
287Before declaring any functions using any functionality the History
288library provides in other code, an application writer should include
289the file
290.FN <readline/history.h>
291in any file that uses the
292History library's features. It supplies extern declarations for all
293of the library's public functions and variables, and declares all of
294the public data structures.
295
296.SS History Storage
297.PP
298The history list is an array of history entries. A history entry is
299declared as follows:
300.PP
301.Vb "typedef void *" histdata_t;
302.PP
303.nf
304typedef struct _hist_entry {
305 char *line;
5bdf8622 306 char *timestamp;
9255ee31
EZ
307 histdata_t data;
308} HIST_ENTRY;
309.fi
310.PP
311The history list itself might therefore be declared as
312.PP
313.Vb "HIST_ENTRY **" the_history_list;
314.PP
315The state of the History library is encapsulated into a single structure:
316.PP
317.nf
318/*
319 * A structure used to pass around the current state of the history.
320 */
321typedef struct _hist_state {
322 HIST_ENTRY **entries; /* Pointer to the entries themselves. */
323 int offset; /* The location pointer within this array. */
324 int length; /* Number of elements within this array. */
325 int size; /* Number of slots allocated to this array. */
326 int flags;
327} HISTORY_STATE;
328.fi
329.PP
330If the flags member includes \fBHS_STIFLED\fP, the history has been
331stifled.
332.SH "History Functions"
333.PP
334This section describes the calling sequence for the various functions
335exported by the GNU History library.
336.SS Initializing History and State Management
337This section describes functions used to initialize and manage
338the state of the History library when you want to use the history
339functions in your program.
340
341.Fn1 void using_history void
342Begin a session in which the history functions might be used. This
343initializes the interactive variables.
344
345.Fn1 "HISTORY_STATE *" history_get_history_state void
346Return a structure describing the current state of the input history.
347
348.Fn1 void history_set_history_state "HISTORY_STATE *state"
349Set the state of the history list according to \fIstate\fP.
350
351.SS History List Management
352
353These functions manage individual entries on the history list, or set
354parameters managing the list itself.
355
356.Fn1 void add_history "const char *string"
357Place \fIstring\fP at the end of the history list. The associated data
358field (if any) is set to \fBNULL\fP.
cb41b9e7
TT
359If the maximum number of history entries has been set using
360\fBstifle_history()\fP, and the new number of history entries would exceed
361that maximum, the oldest history entry is removed.
9255ee31 362
5bdf8622
DJ
363.Fn1 void add_history_time "const char *string"
364Change the time stamp associated with the most recent history entry to
365\fIstring\fP.
366
9255ee31
EZ
367.Fn1 "HIST_ENTRY *" remove_history "int which"
368Remove history entry at offset \fIwhich\fP from the history. The
369removed element is returned so you can free the line, data,
370and containing structure.
371
5bdf8622
DJ
372.Fn1 "histdata_t" free_history_entry "HIST_ENTRY *histent"
373Free the history entry \fIhistent\fP and any history library private
374data associated with it. Returns the application-specific data
375so the caller can dispose of it.
376
9255ee31
EZ
377.Fn3 "HIST_ENTRY *" replace_history_entry "int which" "const char *line" "histdata_t data"
378Make the history entry at offset \fIwhich\fP have \fIline\fP and \fIdata\fP.
5bdf8622
DJ
379This returns the old entry so the caller can dispose of any
380application-specific data. In the case
9255ee31
EZ
381of an invalid \fIwhich\fP, a \fBNULL\fP pointer is returned.
382
383.Fn1 void clear_history "void"
384Clear the history list by deleting all the entries.
385
386.Fn1 void stifle_history "int max"
387Stifle the history list, remembering only the last \fImax\fP entries.
cb41b9e7 388The history list will contain only \fImax\fP entries at a time.
9255ee31
EZ
389
390.Fn1 int unstifle_history "void"
391Stop stifling the history. This returns the previously-set
392maximum number of history entries (as set by \fBstifle_history()\fP).
393history was stifled. The value is positive if the history was
394stifled, negative if it wasn't.
395
396.Fn1 int history_is_stifled "void"
397Returns non-zero if the history is stifled, zero if it is not.
398
399.SS Information About the History List
400
401These functions return information about the entire history list or
402individual list entries.
403
404.Fn1 "HIST_ENTRY **" history_list "void"
405Return a \fBNULL\fP terminated array of \fIHIST_ENTRY *\fP which is the
406current input history. Element 0 of this list is the beginning of time.
407If there is no history, return \fBNULL\fP.
408
409.Fn1 int where_history "void"
410Returns the offset of the current history element.
411
412.Fn1 "HIST_ENTRY *" current_history "void"
413Return the history entry at the current position, as determined by
414\fBwhere_history()\fP. If there is no entry there, return a \fBNULL\fP
415pointer.
416
417.Fn1 "HIST_ENTRY *" history_get "int offset"
cb41b9e7
TT
418Return the history entry at position \fIoffset\fP.
419The range of valid values of \fIoffset\fP starts at \fBhistory_base\fP
420and ends at \fBhistory_length\fP \- 1.
421If there is no entry there, or if \fIoffset\fP is outside the valid
422range, return a \fBNULL\fP pointer.
9255ee31 423
5bdf8622
DJ
424.Fn1 "time_t" history_get_time "HIST_ENTRY *"
425Return the time stamp associated with the history entry passed as the argument.
426
9255ee31
EZ
427.Fn1 int history_total_bytes "void"
428Return the number of bytes that the primary history entries are using.
429This function returns the sum of the lengths of all the lines in the
430history.
431
432.SS Moving Around the History List
433
434These functions allow the current index into the history list to be
435set or changed.
436
437.Fn1 int history_set_pos "int pos"
438Set the current history offset to \fIpos\fP, an absolute index
439into the list.
440Returns 1 on success, 0 if \fIpos\fP is less than zero or greater
441than the number of history entries.
442
443.Fn1 "HIST_ENTRY *" previous_history "void"
444Back up the current history offset to the previous history entry, and
445return a pointer to that entry. If there is no previous entry, return
446a \fBNULL\fP pointer.
447
448.Fn1 "HIST_ENTRY *" next_history "void"
775e241e
TT
449If the current history offset refers to a valid history entry,
450increment the current history offset.
451If the possibly-incremented history offset refers to a valid history
452entry, return a pointer to that entry;
453otherwise, return a \fBNULL\fP pointer.
9255ee31
EZ
454
455.SS Searching the History List
456
457These functions allow searching of the history list for entries containing
458a specific string. Searching may be performed both forward and backward
459from the current history position. The search may be \fIanchored\fP,
460meaning that the string must match at the beginning of the history entry.
461
462.Fn2 int history_search "const char *string" "int direction"
463Search the history for \fIstring\fP, starting at the current history offset.
464If \fIdirection\fP is less than 0, then the search is through
465previous entries, otherwise through subsequent entries.
466If \fIstring\fP is found, then
467the current history index is set to that history entry, and the value
468returned is the offset in the line of the entry where
469\fIstring\fP was found. Otherwise, nothing is changed, and a -1 is
470returned.
471
472.Fn2 int history_search_prefix "const char *string" "int direction"
473Search the history for \fIstring\fP, starting at the current history
474offset. The search is anchored: matching lines must begin with
475\fIstring\fP. If \fIdirection\fP is less than 0, then the search is
476through previous entries, otherwise through subsequent entries.
477If \fIstring\fP is found, then the
478current history index is set to that entry, and the return value is 0.
479Otherwise, nothing is changed, and a -1 is returned.
480
481.Fn3 int history_search_pos "const char *string" "int direction" "int pos"
482Search for \fIstring\fP in the history list, starting at \fIpos\fP, an
483absolute index into the list. If \fIdirection\fP is negative, the search
484proceeds backward from \fIpos\fP, otherwise forward. Returns the absolute
485index of the history element where \fIstring\fP was found, or -1 otherwise.
486
487.SS Managing the History File
488The History library can read the history from and write it to a file.
489This section documents the functions for managing a history file.
490
491.Fn1 int read_history "const char *filename"
492Add the contents of \fIfilename\fP to the history list, a line at a time.
493If \fIfilename\fP is \fBNULL\fP, then read from \fI~/.history\fP.
494Returns 0 if successful, or \fBerrno\fP if not.
495
496.Fn3 int read_history_range "const char *filename" "int from" "int to"
497Read a range of lines from \fIfilename\fP, adding them to the history list.
498Start reading at line \fIfrom\fP and end at \fIto\fP.
499If \fIfrom\fP is zero, start at the beginning. If \fIto\fP is less than
500\fIfrom\fP, then read until the end of the file. If \fIfilename\fP is
501\fBNULL\fP, then read from \fI~/.history\fP. Returns 0 if successful,
502or \fBerrno\fP if not.
503
504.Fn1 int write_history "const char *filename"
505Write the current history to \fIfilename\fP, overwriting \fIfilename\fP
506if necessary.
507If \fIfilename\fP is \fBNULL\fP, then write the history list to \fI~/.history\fP.
508Returns 0 on success, or \fBerrno\fP on a read or write error.
509
510
511.Fn2 int append_history "int nelements" "const char *filename"
512Append the last \fInelements\fP of the history list to \fIfilename\fP.
513If \fIfilename\fP is \fBNULL\fP, then append to \fI~/.history\fP.
514Returns 0 on success, or \fBerrno\fP on a read or write error.
515
516.Fn2 int history_truncate_file "const char *filename" "int nlines"
517Truncate the history file \fIfilename\fP, leaving only the last
518\fInlines\fP lines.
519If \fIfilename\fP is \fBNULL\fP, then \fI~/.history\fP is truncated.
520Returns 0 on success, or \fBerrno\fP on failure.
521
522.SS History Expansion
523
524These functions implement history expansion.
525
526.Fn2 int history_expand "char *string" "char **output"
527Expand \fIstring\fP, placing the result into \fIoutput\fP, a pointer
528to a string. Returns:
529.RS
530.PD 0
531.TP
5320
533If no expansions took place (or, if the only change in
534the text was the removal of escape characters preceding the history expansion
535character);
536.TP
5371
538if expansions did take place;
539.TP
540-1
541if there was an error in expansion;
542.TP
5432
544if the returned line should be displayed, but not executed,
545as with the \fB:p\fP modifier.
546.PD
547.RE
548If an error ocurred in expansion, then \fIoutput\fP contains a descriptive
549error message.
550
551.Fn3 "char *" get_history_event "const char *string" "int *cindex" "int qchar"
552Returns the text of the history event beginning at \fIstring\fP +
553\fI*cindex\fP. \fI*cindex\fP is modified to point to after the event
554specifier. At function entry, \fIcindex\fP points to the index into
555\fIstring\fP where the history event specification begins. \fIqchar\fP
556is a character that is allowed to end the event specification in addition
557to the ``normal'' terminating characters.
558
559.Fn1 "char **" history_tokenize "const char *string"
560Return an array of tokens parsed out of \fIstring\fP, much as the
561shell might.
562The tokens are split on the characters in the
563\fBhistory_word_delimiters\fP variable,
564and shell quoting conventions are obeyed.
565
566.Fn3 "char *" history_arg_extract "int first" "int last" "const char *string"
567Extract a string segment consisting of the \fIfirst\fP through \fIlast\fP
568arguments present in \fIstring\fP. Arguments are split using
569\fBhistory_tokenize()\fP.
570
571.SS History Variables
572
573This section describes the externally-visible variables exported by
574the GNU History Library.
575
576.Vb int history_base
577The logical offset of the first entry in the history list.
578
579.Vb int history_length
580The number of entries currently stored in the history list.
581
582.Vb int history_max_entries
583The maximum number of history entries. This must be changed using
584\fBstifle_history()\fP.
585
cc88a640 586.Vb int history_wite_timestamps
5bdf8622
DJ
587If non-zero, timestamps are written to the history file, so they can be
588preserved between sessions. The default value is 0, meaning that
589timestamps are not saved.
cc88a640
JK
590The current timestamp format uses the value of \fIhistory_comment_char\fP
591to delimit timestamp entries in the history file. If that variable does
592not have a value (the default), timestamps will not be written.
5bdf8622 593
9255ee31
EZ
594.Vb char history_expansion_char
595The character that introduces a history event. The default is \fB!\fP.
596Setting this to 0 inhibits history expansion.
597
598.Vb char history_subst_char
599The character that invokes word substitution if found at the start of
600a line. The default is \fB^\fP.
601
602.Vb char history_comment_char
603During tokenization, if this character is seen as the first character
604of a word, then it and all subsequent characters up to a newline are
605ignored, suppressing history expansion for the remainder of the line.
606This is disabled by default.
607
608.Vb "char *" history_word_delimiters
609The characters that separate tokens for \fBhistory_tokenize()\fP.
610The default value is \fB"\ \et\en()<>;&|"\fP.
611
612.Vb "char *" history_no_expand_chars
613The list of characters which inhibit history expansion if found immediately
614following \fBhistory_expansion_char\fP. The default is space, tab, newline,
615\fB\er\fP, and \fB=\fP.
616
617.Vb "char *" history_search_delimiter_chars
618The list of additional characters which can delimit a history search
619string, in addition to space, tab, \fI:\fP and \fI?\fP in the case of
620a substring search. The default is empty.
621
622.Vb int history_quotes_inhibit_expansion
775e241e
TT
623If non-zero, double-quoted words are not scanned for the history expansion
624character or the history comment character. The default value is 0.
9255ee31
EZ
625
626.Vb "rl_linebuf_func_t *" history_inhibit_expansion_function
627This should be set to the address of a function that takes two arguments:
628a \fBchar *\fP (\fIstring\fP)
629and an \fBint\fP index into that string (\fIi\fP).
630It should return a non-zero value if the history expansion starting at
631\fIstring[i]\fP should not be performed; zero if the expansion should
632be done.
633It is intended for use by applications like \fBbash\fP that use the history
634expansion character for additional purposes.
635By default, this variable is set to \fBNULL\fP.
636.SH FILES
637.PD 0
638.TP
639.FN ~/.history
640Default filename for reading and writing saved history
641.PD
642.SH "SEE ALSO"
643.PD 0
644.TP
645\fIThe Gnu Readline Library\fP, Brian Fox and Chet Ramey
646.TP
647\fIThe Gnu History Library\fP, Brian Fox and Chet Ramey
648.TP
649\fIbash\fP(1)
650.TP
651\fIreadline\fP(3)
652.PD
653.SH AUTHORS
654Brian Fox, Free Software Foundation
655.br
656bfox@gnu.org
657.PP
658Chet Ramey, Case Western Reserve University
659.br
775e241e 660chet.ramey@case.edu
9255ee31
EZ
661.SH BUG REPORTS
662If you find a bug in the
663.B history
664library, you should report it. But first, you should
665make sure that it really is a bug, and that it appears in the latest
666version of the
667.B history
668library that you have.
669.PP
670Once you have determined that a bug actually exists, mail a
671bug report to \fIbug\-readline\fP@\fIgnu.org\fP.
672If you have a fix, you are welcome to mail that
673as well! Suggestions and `philosophical' bug reports may be mailed
674to \fPbug-readline\fP@\fIgnu.org\fP or posted to the Usenet
675newsgroup
676.BR gnu.bash.bug .
677.PP
678Comments and bug reports concerning
679this manual page should be directed to
775e241e 680.IR chet.ramey@case.edu .
This page took 0.747243 seconds and 4 git commands to generate.