Home
last modified time | relevance | path

Searched refs:history (Results 1 – 25 of 333) sorted by relevance

12345678910>>...14

/openbsd/gnu/lib/libreadline/doc/
H A Dhstech.texinfo79 The history list is an array of history entries. A history entry is
126 of history entries.
128 the history list.
171 Remove history entry at offset @var{which} from the history. The
233 history.
250 Back up the current history offset to the previous history entry, and
256 Move the current history offset forward to the next history entry, and
272 Search the history for @var{string}, starting at the current history offset.
276 the current history index is set to that history entry, and the value
283 Search the history for @var{string}, starting at the current history
[all …]
H A Dhsuser.texinfo50 history.
94 is unset, or if the history file is unwritable, the history is
126 history list and history file.
162 @item history
163 @btindex history
165 history [@var{n}]
166 history -c
189 history lines (history lines entered since the beginning of the
193 Append the history lines not already read from the history file
202 Write out the current history to the history file.
[all …]
H A Drluser.texinfo293 find the desired history entry.
459 @vindex history-preserve-point
461 same location on each history line retrived with @code{previous-history}
462 or @code{next-history}.
798 #"\M-OB": next-history
805 "\M-[B": next-history
943 If this line is a modified history line, then restore the history line
951 If this line is a modified history line, the history line is restored
955 @item previous-history (C-p)
958 @item next-history (C-n)
[all …]
/openbsd/gnu/usr.bin/binutils/gdb/doc/
H A Dinc-hist.texinfo38 history.
82 is unset, or if the history file is unwritable, the history is
114 history list and history file.
150 @item history
151 @btindex history
153 history [@var{n}]
154 history -c
177 history lines (history lines entered since the beginning of the
181 Append the history lines not already read from the history file
190 Write out the current history to the history file.
[all …]
H A Dannotate.texinfo226 history; to print a value without recording it into the value history,
239 @findex value-history-begin
240 @findex value-history-value
241 @findex value-history-end
246 ^Z^Zvalue-history-begin @var{history-number} @var{value-flags}
247 @var{history-string}
248 ^Z^Zvalue-history-value
250 ^Z^Zvalue-history-end
255 history, @var{history-string} is a string, such as @samp{$5 = }, which
293 @code{value-history-begin} annotation.
[all …]
/openbsd/bin/ksh/
H A Dhistory.c402 hp = &history[n]; in hist_get()
411 if (histptr < history || (!allow_cur && histptr == history)) { in hist_get_newest()
428 return history; in hist_get_oldest()
455 histptr = history - 1; in histreset()
477 current = &history[n]; in histnum()
498 hp = &history[start]; in findhist()
502 return hp - history; in findhist()
626 history = histbase + 1; in init_histvec()
627 histptr = history - 1; in init_histvec()
694 afree(*history, APERM); in histsave()
[all …]
/openbsd/regress/bin/ksh/
H A Dhistory.t7 name: history-basic
24 name: history-e-minus-1
43 name: history-e-minus-2
122 name: history-list-1
145 name: history-list-2
170 name: history-list-3
194 name: history-list-4
473 name: history-ed-1
498 name: history-ed-2
527 name: history-ed-3
[all …]
H A Dcdhist.t1 name: cd-history
3 Test someone's CD history package (uses arrays)
21 if [ "$CDHISTFILE" -a -r "$CDHISTFILE" ] # if directory history exists
25 while read -r t # read directory history file
33 _cdins # insert $PWD into cd history
36 cdlen=${#CDHIST[*]} # number of elements in history
98 _cdins # insert $PWD into cd history
102 cdlen=${#CDHIST[*]} # number of elements in history
107 'print' -r ${CDHIST[i]} # update directory history
113 function _cdins # insert $PWD into cd history
/openbsd/lib/libedit/TEST/
H A Dtc1.c131 history(hist, &ev, H_SETSIZE, 100); in main()
143 el_set(el, EL_HIST, history, hist); in main()
205 if (history(hist, &ev, H_SET, lastevent) == -1) in main()
207 history(hist, &ev, H_ADD , buf); in main()
209 history(hist, &ev, H_ENTER, buf); in main()
214 history(hist, &ev, continuation ? H_APPEND : H_ENTER, buf); in main()
237 for (rv = history(hist, &ev, H_LAST); rv != -1; in main()
238 rv = history(hist, &ev, H_PREV)) in main()
245 history(hist, &ev, H_CLEAR); in main()
252 history(hist, &ev, H_LOAD, av[2]); in main()
[all …]
/openbsd/lib/libedit/
H A Dreadline.c198 if (history(h, &ev, op) != 0) in _move_history()
319 el_set(e, EL_HIST, history, h); in rl_initialize()
434 history(h, &ev, H_GETSIZE); in readline()
599 history(h, &ev, H_FIRST); in get_history_event()
615 if (history(h, &ev, H_CURR) != 0) in get_history_event()
621 (void)history(h, &ev, H_SET, num); in get_history_event()
1505 (void)history(h, &ev, H_CLEAR); in clear_history()
1525 (void)history(h, &ev, H_LAST); in where_history()
1561 (void)history(h, &ev, H_FIRST); in history_total_bytes()
1586 (void)history(h, &ev, H_CURR); in history_set_pos()
[all …]
/openbsd/gnu/llvm/lldb/source/Commands/
H A DCommandObjectSession.cpp153 const CommandHistory &history(m_interpreter.GetCommandHistory()); in DoExecute() local
157 start_idx.second = history.GetSize() - count.second; in DoExecute()
158 stop_idx.second = history.GetSize() - 1; in DoExecute()
161 stop_idx.second = history.GetSize() - 1; in DoExecute()
164 stop_idx.second = history.GetSize() - 1; in DoExecute()
169 stop_idx.second = history.GetSize() - 1; in DoExecute()
174 stop_idx.second = history.GetSize() - 1; in DoExecute()
189 history.Dump(result.GetOutputStream(), start_idx.second, in DoExecute()
/openbsd/gnu/usr.bin/binutils/gdb/testsuite/gdb.base/
H A Dgdb_history159 set history expansion
160 set history filename
161 set history save
162 set history size
163 set history
201 show history expansion
202 show history filename
203 show history save
204 show history size
205 show history
/openbsd/gnu/lib/libreadline/
H A DMANIFEST22 history.h f
71 history.c f
95 doc/history.3 f
112 doc/history.ps f
115 doc/history.dvi f
118 doc/history.info f
121 doc/history.html f
124 doc/history.0 f
H A DCHANGES154 h. New bindable variable `history-preserve-point'. If set, the history
156 line retrived with previous-history or next-history.
309 o. There is a new history.3 manual page documenting the history library.
329 e. The history library tries to truncate the history file only if it is a
343 j. Fixes to the history file manipulation code for MS-DOS.
366 the history file on cygwin32.
399 {reverse,forward}-search-history.
401 f. history-search-{forward,backward} now leave the last history line found
474 q. Code was added to the history library to catch history substitutions
539 the shared readline and history libraries.
[all …]
/openbsd/usr.sbin/config/
H A Dukc.c65 char history[1024], kversion[1024]; in ukc() local
106 if (kvm_read(kd, knl[CA_HISTORY].n_value, history, in ukc()
107 sizeof(history)) != sizeof(history)) in ukc()
156 process_history(histlen, history); in ukc()
/openbsd/gnu/llvm/llvm/lib/LineEditor/
H A DLineEditor.cpp211 ::el_set(Data->EL, EL_HIST, history, Data->Hist); in LineEditor()
224 ::history(Data->Hist, &HE, H_SETSIZE, 800); in LineEditor()
225 ::history(Data->Hist, &HE, H_SETUNIQUE, 1); in LineEditor()
240 ::history(Data->Hist, &HE, H_SAVE, HistoryPath.c_str()); in saveHistory()
247 ::history(Data->Hist, &HE, H_LOAD, HistoryPath.c_str()); in loadHistory()
267 ::history(Data->Hist, &HE, H_ENTER, Line); in readLine()
/openbsd/gnu/llvm/lldb/utils/lui/
H A Dcommandwin.py65 self.history = History()
94 self.history,
104 cmd = self.history.previous('')
109 self.history.add(cmd)
/openbsd/gnu/lib/libreadline/examples/
H A DInputrc33 "\e[A": previous-history
34 "\e[B": next-history
39 "\eOA": previous-history
40 "\eOB": next-history
H A Dreadlinebuf.h130 readlinebuf( const char* prompt = NULL, bool history = true )
131 : prompt_( prompt ), history_( history ), in prompt_()
/openbsd/etc/root/
H A Ddot.cshrc7 set history=1000
14 alias h history
/openbsd/etc/skel/
H A Ddot.cshrc8 alias h 'history -r | more'
21 set history = 1000
/openbsd/gnu/usr.bin/perl/cpan/CPAN/lib/CPAN/
H A DFTP.pm126 $fullstats->{history} ||= [];
127 push @debug, scalar @{$fullstats->{history}} if $sdebug;
129 push @{$fullstats->{history}}, $stats;
136 @{$fullstats->{history} || []}
139 @{$fullstats->{history}} > $ftpstats_size
140 || $time - $fullstats->{history}[0]{start} > 86400*$ftpstats_period
143 shift @{$fullstats->{history}}
145 push @debug, scalar @{$fullstats->{history}} if $sdebug;
147 push @debug, scalar localtime($fullstats->{history}[0]{start}) if $sdebug;
204 my $history = $fullstats->{history} || [];
[all …]
/openbsd/gnu/usr.bin/cvs/doc/
H A Dcvs.aux211 'xrdef {Inside-title}{Moving the history file}
226 'xrdef {history database-title}{The history database}
227 'xrdef {history database-pg}{59}
228 'xrdef {history database-snt}{Section'tie8.2}
394 'xrdef {history-title}{history---Show status of files and users}
395 'xrdef {history-pg}{105}
396 'xrdef {history-snt}{Section'tie'char65.11}
397 'xrdef {history options-title}{history options}
398 'xrdef {history options-pg}{105}
517 'xrdef {history file-title}{The history file}
[all …]
/openbsd/gnu/usr.bin/perl/cpan/CPAN-Meta/lib/CPAN/Meta/History/
H A DMeta_1_0.pod55 L<YAML document header|http://yaml.org/spec/history/2002-10-31.html#syntax-document>
61 L<mapping|http://yaml.org/spec/history/2002-10-31.html#syntax-mapping>,
153 A YAML L<mapping|http://yaml.org/spec/history/2002-10-31.html#syntax-mapping>
171 A YAML L<mapping|http://yaml.org/spec/history/2002-10-31.html#syntax-mapping>
182 A YAML L<mapping|http://yaml.org/spec/history/2002-10-31.html#syntax-mapping>
194 A YAML L<mapping|http://yaml.org/spec/history/2002-10-31.html#syntax-mapping>
/openbsd/gnu/usr.bin/perl/
H A DChanges9 If you need a detailed commit history (i.e. descriptions of each
10 individual commit), you can view the git version control history online
19 commit history.

12345678910>>...14