1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
|
# Search within your typed history as you type (like ctrl-R in bash)
# Usage:
# * First do: /bind ^R /history_search
# * Then type ctrl-R and type what you're searching for
# * Optionally, you can bind something to "/history_search -forward" to go forward in the results
# Copyright 2007-2009 Wouter Coekaerts <coekie@irssi.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
use strict;
use Irssi 20070804;
use Irssi::TextUI;
use vars qw($VERSION %IRSSI);
$VERSION = '2.1';
%IRSSI = (
authors => 'Wouter Coekaerts',
contact => 'coekie@irssi.org',
name => 'history_search',
description => 'Search within your typed history as you type (like ctrl-R in bash)',
license => 'GPLv2 or later',
url => 'http://wouter.coekaerts.be/irssi/',
);
# is the searching enabled?
my $enabled = 0;
# the typed text (the query) last time a key was pressed
my $prev_typed;
# the position in the input of where the typed text started.
# everything before it is not typed by the user but added by this script as part of the result
my $prev_startpos;
# the current list of matches
my @matches;
# at what place are we in @matches?
my $current_match_index;
Irssi::command_bind('history_search', sub {
my ($data, $server, $item) = @_;
if ($data !~ /^ *(-forward)? *$/) {
Irssi::print("history_search: Unknown arguments: $data");
return;
}
my $forward = $1 eq '-forward';
if (! $enabled) {
$enabled = 1;
$prev_typed = '';
$prev_startpos = 0;
@matches = ();
$current_match_index = -1;
} else {
if ($forward) {
if ($current_match_index + 1 < scalar(@matches)) {
$current_match_index++;
}
} else { # backwards
if ($current_match_index > 0) {
$current_match_index--;
}
}
}
});
Irssi::signal_add_last 'gui key pressed' => sub {
my ($key) = @_;
if ($key == 10 || $key == 13 || $key == 27) { # enter or escape
$enabled = 0;
}
return unless $enabled;
# get the content of the input line
my $prompt = Irssi::parse_special('$L');
my $pos = Irssi::gui_input_get_pos();
# stop if the cursor is before the position where the typing started (e.g. if user pressed backspace more than he typed characters)
if ($pos < $prev_startpos) {
$enabled = 0;
return;
}
# get the part of the input line that the user typed (strip the part before and after which this script added)
my $typed = substr($prompt, $prev_startpos, ($pos-$prev_startpos));
if ($typed ne $prev_typed) { # something changed
# find matches
find_matches($typed);
# start searching from the end again
$current_match_index = scalar(@matches) - 1;
}
# if nothing was found, just show what the user typed
# else, show the current match
my $result = ($current_match_index == -1) ? $typed : $matches[$current_match_index];
# update the input line
my $startpos = index(lc($result), lc($typed));
Irssi::gui_input_set($result);
Irssi::gui_input_set_pos($startpos + length($typed));
# remember for next time
$prev_typed = $typed;
$prev_startpos = $startpos;
};
# find matches for the given user-typed text, and put it in @matches
sub find_matches($) {
my ($typed) = @_;
if (Irssi::version() > 20090117) {
$typed = lc($typed);
my @history;
if ($prev_typed ne '' && index($typed, lc($prev_typed)) != -1) { # previous typed plus more
@history = @matches; # only search in previous results
} else {
@history = Irssi::active_win->get_history_lines();
}
@matches = ();
for my $history_line (@history) {
my $startpos = index(lc($history_line), $typed);
if ($startpos != -1) {
push @matches, $history_line;
}
}
} else { # older irssi version, can only get the last match
@matches = ();
my $last_match = Irssi::parse_special('$!' . $typed . '!');
if ($last_match ne '') {
push @matches, $last_match;
}
}
}
|