Home
last modified time | relevance | path

Searched +refs:history +refs:search (Results 1 – 25 of 28765) sorted by relevance

12345678910>>...1151

/dports/shells/zsh/zsh-5.8.1/Functions/Zle/
H A Dhistory-search-end1 # function history-search-end {
3 # This implements functions like history-beginning-search-{back,for}ward,
5 # history, like history-search-{back,for}ward. To use them:
6 # zle -N history-beginning-search-backward-end history-search-end
7 # zle -N history-beginning-search-forward-end history-search-end
8 # bindkey '...' history-beginning-search-backward-end
9 # bindkey '...' history-beginning-search-forward-end
13 if [[ $LASTWIDGET = history-beginning-search-*-end ]]; then
H A Dhistory-pattern-search1 # Prompt for an search in the history for a pattern.
2 # Patterns to search are standard zsh patterns, but may include
4 # start or end of the history entry respectively.
6 # To search backwards, create a widget history-pattern-search-backward:
7 # zle -N history-pattern-search-backward history-pattern-search
8 # and to search forwards, create history-pattern-search-forward
9 # zle -N history-pattern-search-forward history-pattern-search
52 # Search history for pattern.
54 found=(${(kon)history[(R)$REPLY]})
58 # get back to the current history number.
[all …]
H A Dhistory-beginning-search-menu1 # Menu-driven alternative to history-beginning-search-backward.
3 # the entire history is searched.
6 # autoload -Uz history-beginning-search-menu
7 # zle -N history-beginning-search-menu
8 # bindkey '\eP' history-beginning-search-menu
24 # zle -N history-beginning-search-menu-end history-beginning-search-menu
43 search=${search//(#m)[\][()\\*?#<>~^]/\\$MATCH}
49 search=${search// /*}
53 matches=(${(o)history[(R)*${search}*]})
55 matches=(${(o)history[(R)${search}*]})
[all …]
/dports/shells/fish/fish-3.3.1/share/completions/
H A Dhistory.fish2 set -l __fish_history_all_commands search delete save merge clear
7 complete -c history -n '__fish_seen_subcommand_from search delete' \
9 complete -c history -n '__fish_seen_subcommand_from search delete' \
11 complete -c history -n '__fish_seen_subcommand_from search delete' \
13 complete -c history -n '__fish_seen_subcommand_from search delete' \
15 complete -c history -n '__fish_seen_subcommand_from search delete' \
18 # Note that these options are only valid with the "search" subcommand.
19 complete -c history -n '__fish_seen_subcommand_from search' \
21 complete -c history -n '__fish_seen_subcommand_from search' \
23 complete -c history -n '__fish_seen_subcommand_from search' \
[all …]
/dports/shells/fish/fish-3.3.1/doc_src/cmds/
H A Dhistory.rst1 .. _cmd-history:
3 history - show and manipulate command history
11history [ search ] [ --show-time ] [ --case-sensitive ] [ --exact | --prefix | --contains ] [ --ma…
12history delete [ --show-time ] [ --case-sensitive ] [ --exact | --prefix | --contains ] "search st…
21 ``history`` is used to search, delete, and otherwise manipulate the :ref:`history of interactive co…
25search`` returns history items matching the search string. If no search string is provided it retu…
49history entries written by the search operations to be terminated by a NUL character rather than a…
51 …x=<number>`` limits the matched history items to the first "n" matching entries. This is only vali…
53 - ``-R`` or ``--reverse`` causes the history search results to be ordered oldest to newest. Which i…
67 history search --contains "foo"
[all …]
/dports/audio/sphinx3/sphinx3-0.8/src/libs3decoder/libsearch/
H A Dfsg_search.c243 search->history = fsg_history_init(fsg, search->n_ci_phone); in fsg_search_init()
404 fsg_history_set_fsg(search->history, fsg); in fsg_search_set_current_fsg()
419 fsg_history_free(search->history); in fsg_search_free()
565 hmm->history[search->n_state_hmm - 1]); in fsg_search_pnode_exit()
578 fsg_history_entry_add(search->history, in fsg_search_pnode_exit()
588 fsg_history_entry_add(search->history, in fsg_search_pnode_exit()
790 fsg_history_end_frame(search->history); in fsg_search_frame_fwd()
797 fsg_history_end_frame(search->history); in fsg_search_frame_fwd()
868 fsg_history_utt_start(search->history); in fsg_search_utt_start()
876 fsg_history_entry_add(search->history, in fsg_search_utt_start()
[all …]
/dports/shells/ohmyzsh/ohmyzsh-6babcbd8841335a3c25ec960ff57ab9a139c9073/plugins/history-substring-search/
H A DREADME.md1 # zsh-history-substring-search
11 [5]: https://github.com/zsh-users/zsh-history-substring-search
25 brew install zsh-history-substring-search
26 …echo 'source /usr/local/share/zsh-history-substring-search/zsh-history-substring-search.zsh' >> ~/…
32 …://github.com/zsh-users/zsh-history-substring-search ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zs…
36 plugins=( [plugins...] history-substring-search)
47 % source zsh-history-substring-search.zsh
53 % source zsh-history-substring-search.zsh
68 bindkey '^[[A' history-substring-search-up
69 bindkey '^[[B' history-substring-search-down
[all …]
H A Dhistory-substring-search.plugin.zsh2 source ${0:A:h}/history-substring-search.zsh
8 bindkey -M emacs "$terminfo[kcuu1]" history-substring-search-up
9 bindkey -M viins "$terminfo[kcuu1]" history-substring-search-up
12 bindkey -M emacs "$terminfo[kcud1]" history-substring-search-down
13 bindkey -M viins "$terminfo[kcud1]" history-substring-search-down
/dports/www/grafana8/grafana-8.3.6/packages/grafana-runtime/src/services/
H A DLocationService.ts33 this.history =
34 history ||
48 return this.history;
52 return new URLSearchParams(this.history.location.search);
71 this.history.replace(updatedUrl, this.history.location.state);
73 this.history.push(updatedUrl, this.history.location.state);
87 this.history.replace({
98 return locationSearchToObject(this.history.location.search);
111 newLocation.search = urlUtil.toUrlParams(options.query);
126 export function locationSearchToObject(search: string | number): UrlQueryMap {
[all …]
/dports/www/qutebrowser/qutebrowser-2.4.0/tests/end2end/features/
H A Dinvoke.feature32 - history:
36 - history:
46 - history:
51 - history:
63 - history:
67 - history:
69 - history:
81 - history:
84 - history:
87 - history:
[all …]
/dports/shells/zsh-autosuggestions/zsh-autosuggestions-0.7.0/src/
H A Dconfig.zsh27 history-search-forward
28 history-search-backward
29 history-beginning-search-forward
30 history-beginning-search-backward
31 history-substring-search-up
32 history-substring-search-down
33 up-line-or-beginning-search
34 down-line-or-beginning-search
35 up-line-or-history
36 down-line-or-history
[all …]
/dports/math/kalker/kalker-1.1.0/cargo-crates/rustyline-7.1.0/src/
H A Dhistory.rs592 assert_eq!(None, history.search("", 0, Direction::Forward));
593 assert_eq!(None, history.search("none", 0, Direction::Forward));
594 assert_eq!(None, history.search("line", 3, Direction::Forward));
596 assert_eq!(Some(0), history.search("line", 0, Direction::Forward));
597 assert_eq!(Some(1), history.search("line", 1, Direction::Forward));
598 assert_eq!(Some(2), history.search("line3", 1, Direction::Forward));
604 assert_eq!(None, history.search("", 2, Direction::Reverse));
605 assert_eq!(None, history.search("none", 2, Direction::Reverse));
606 assert_eq!(None, history.search("line", 3, Direction::Reverse));
608 assert_eq!(Some(2), history.search("line", 2, Direction::Reverse));
[all …]
/dports/irc/ircII/ircii-20210314/script/
H A Dhistory-match1 # history-match
4 # command history
9 # modify the pattern or hit return it will reset the search to something
20 alias history.expn {
25 @ history.key = [$0]
27 if (history.nomatch == []) {@ history.nomatch = 1}
28 if (!match($(history.pat)* $1)) {@ history.pat = [$1]}
29 @ history.found = 0
32 if ((history.search = [$(!$(0)!)]) != [])
34 if (match($(history.pat)* $word(1 $history.search)))
[all …]
/dports/sysutils/fselect/fselect-0.7.7/cargo-crates/rustyline-9.0.0/src/
H A Dhistory.rs705 assert_eq!(None, history.search("", 0, SearchDirection::Forward));
706 assert_eq!(None, history.search("none", 0, SearchDirection::Forward));
707 assert_eq!(None, history.search("line", 3, SearchDirection::Forward));
715 history.search("line", 0, SearchDirection::Forward)
723 history.search("line", 1, SearchDirection::Forward)
731 history.search("line3", 1, SearchDirection::Forward)
738 assert_eq!(None, history.search("", 2, SearchDirection::Reverse));
739 assert_eq!(None, history.search("none", 2, SearchDirection::Reverse));
748 history.search("line", 2, SearchDirection::Reverse)
756 history.search("line", 1, SearchDirection::Reverse)
[all …]
/dports/shells/fish/fish-3.3.1/share/functions/
H A Dhistory.fish17 function history --description "display or manipulate interactive command history"
18 set -l cmd history
24 set -a options S-search D-delete M-merge V-save X-clear
62 set hist_cmd search
71 if contains $argv[1] search delete merge save clear
78 set hist_cmd search # default to "search" if the user didn't specify a subcommand
82 case search # search the interactive command history
100 …builtin history search $search_mode $show_time $max_count $_flag_case_sensitive $_flag_reverse $_f…
102 …builtin history search $search_mode $show_time $max_count $_flag_case_sensitive $_flag_reverse $_f…
122 # set -l found_items (builtin history search $search_mode $show_time -- $argv)
[all …]
/dports/shells/zsh/zsh-5.8.1/Src/Zle/
H A Diwidgets.list16 "accept-search", NULL, 0
68 "history-beginning-search-backward", historybeginningsearchbackward, 0
69 "history-beginning-search-forward", historybeginningsearchforward, 0
70 "history-incremental-search-backward", historyincrementalsearchbackward, 0
71 "history-incremental-search-forward", historyincrementalsearchforward, 0
72 "history-incremental-pattern-search-backward", historyincrementalpatternsearchbackward, 0
73 "history-incremental-pattern-search-forward", historyincrementalpatternsearchforward, 0
74 "history-search-backward", historysearchbackward, 0
75 "history-search-forward", historysearchforward, 0
163 "vi-history-search-backward", vihistorysearchbackward, 0
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/media/pocketsphinx/src/
H A Dfsg_search.c273 if (fsgs->history) { in fsg_search_free()
274 fsg_history_reset(fsgs->history); in fsg_search_free()
276 fsg_history_free(fsgs->history); in fsg_search_free()
480 fsg_history_entry_add(fsgs->history, in fsg_search_pnode_exit()
490 fsg_history_entry_add(fsgs->history, in fsg_search_pnode_exit()
717 fsg_history_end_frame(fsgs->history); in fsg_search_step()
724 fsg_history_end_frame(fsgs->history); in fsg_search_step()
789 fsg_history_reset(fsgs->history); in fsg_search_start()
790 fsg_history_utt_start(fsgs->history); in fsg_search_start()
799 fsg_history_entry_add(fsgs->history, in fsg_search_start()
[all …]
H A Dallphone_search.c120 iter->base.search = search; in allphone_search_seg_iter()
383 blkarray_list_t *history; in phmm_exit() local
391 history = allphs->history; in phmm_exit()
453 blkarray_list_append(history, h); in phmm_exit()
485 h = blkarray_list_get(allphs->history, hist_idx); in phmm_trans()
606 allphs->history = blkarray_list_init(); in allphone_search_init()
664 blkarray_list_free(allphs->history); in allphone_search_free()
691 blkarray_list_reset(allphs->history); in allphone_search_start()
789 h = blkarray_list_get(allphs->history, hist_idx); in allphone_backtrace()
845 n_hist = blkarray_list_n_valid(allphs->history); in allphone_search_finish()
[all …]
/dports/irc/ninja/ninja-1.5.8.1/doc/ircII-help+ninja/help/
H A D!1 usage: ![<history number>/<history match>]
4 history for re-execution. The ! command is unique in that when it
5 is used, it leaves the matching history entry in the input line for
6 re-editing. You can specify a history entry either by its number
10 will put entry 10 in the history list into the input line.
13 will search the history list for a line beginning with /MSG and
16 the ! command continue their search in the history list from where
28 With this, you can hit ^R and you will be prompted for a search
29 string in the history list. If you want to then repeat the search
31 the previous search by default.
[all …]
/dports/shells/ohmyzsh/ohmyzsh-6babcbd8841335a3c25ec960ff57ab9a139c9073/lib/
H A Dkey-bindings.zsh21 # [PageUp] - Up a line of history
23 bindkey -M emacs "${terminfo[kpp]}" up-line-or-history
27 # [PageDown] - Down a line of history
36 autoload -U up-line-or-beginning-search
37 zle -N up-line-or-beginning-search
45 autoload -U down-line-or-beginning-search
46 zle -N down-line-or-beginning-search
109history-incremental-search-backward # [Ctrl-r] - Search backward incrementally for a specifie…
125 #bindkey '^[[A' up-line-or-search
126 #bindkey '^[[B' down-line-or-search
[all …]
/dports/shells/fish/fish-3.3.1/tests/checks/
H A Dhistory.fish8 history --search --merge
9 #CHECKERR: history: Mutually exclusive flags 'merge' and `search` seen
10 history --clear --contains
12 history --merge -t
14 history --save xyz
33 history merge -t
35 history save xyz
37 history --prefix clear
43 builtin history --search --merge
45 #CHECKERR: you cannot do both 'search' and 'merge' in the same invocation
[all …]
/dports/audio/pocketsphinx/pocketsphinx-0.8/src/libpocketsphinx/
H A Dfsg_search.c234 if (fsgs->history) {
235 fsg_history_reset(fsgs->history);
237 fsg_history_free(fsgs->history);
662 fsg_history_entry_add(fsgs->history,
672 fsg_history_entry_add(fsgs->history,
899 fsg_history_end_frame(fsgs->history);
906 fsg_history_end_frame(fsgs->history);
971 fsg_history_reset(fsgs->history);
972 fsg_history_utt_start(fsgs->history);
981 fsg_history_entry_add(fsgs->history,
[all …]
/dports/math/octave/octave-6.4.0/scripts/startup/
H A Dinputrc12 ## history-search-backward:
14 ## Search backward through the history for the string of characters
16 ## non-incremental search. Bound to "\e[A", the ANSI escape
19 "\e[A": history-search-backward
21 ## history-search-forward:
23 ## Search forward through the history for the string of characters
25 ## non-incremental search. Bound to "\e[B", the ANSI escape
28 "\e[B": history-search-forward
/dports/devel/p5-CPAN-Testers-Common-Client/CPAN-Testers-Common-Client-0.14/lib/CPAN/Testers/Common/Client/
H A DHistory.pm136 flock $history, LOCK_SH;
142 $history->close;
147 my ($fields, $search) = @_;
148 for my $k ( keys %$search ) {
149 next if $search->{$k} eq q{}; # empty string matches anything
150 return unless $fields->{$k} eq $search->{$k};
180 return $history;
201 flock $history, LOCK_SH;
208 $history->close;
217 flock( $history, LOCK_EX );
[all …]
/dports/devel/p5-CPAN-Reporter/CPAN-Reporter-1.2018/lib/CPAN/Reporter/
H A DHistory.pm123 flock $history, LOCK_SH;
129 $history->close;
198 flock $history, LOCK_SH;
205 $history->close;
214 my ($fields, $search) = @_;
215 for my $k ( keys %$search ) {
216 next if $search->{$k} eq q{}; # empty string matches anything
217 return unless $fields->{$k} eq $search->{$k};
244 return $history;
274 flock( $history, LOCK_EX );
[all …]

12345678910>>...1151