ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/perl/searchable-scrollback
(Generate patch)

Comparing rxvt-unicode/src/perl/searchable-scrollback (file contents):
Revision 1.38 by sf-exg, Sun Jun 8 19:40:20 2014 UTC vs.
Revision 1.43 by root, Fri Dec 26 19:19:30 2014 UTC

1#! perl 1#! perl
2 2
3# this extension implements scrollback buffer search 3# this extension implements scrollback buffer search
4 4
5#:META:RESOURCE:%:string:activation hotkey keysym 5#:META:RESOURCE:%:string:activation hotkey keysym
6#:META:BINDING:M-s:start
7 6
8=head1 NAME 7=head1 NAME
9 8
10searchable-scrollback - incremental scrollback search (enabled by default) 9searchable-scrollback - incremental scrollback search (enabled by default)
11 10
36 my ($self) = @_; 35 my ($self) = @_;
37 36
38 # only for backwards compatibility 37 # only for backwards compatibility
39 my $hotkey = $self->{argv}[0] 38 my $hotkey = $self->{argv}[0]
40 || $self->x_resource ("%") 39 || $self->x_resource ("%")
41 || return; 40 || "M-s";
42 41
43 $self->bind_action ($hotkey, "searchable-scrollback:start") # ugh 42 $self->bind_action ($hotkey, "%:start")
44 or warn "unable to register '$hotkey' as scrollback search start hotkey\n"; 43 or warn "unable to register '$hotkey' as scrollback search start hotkey\n";
44
45 ()
46}
47
48sub on_user_command {
49 my ($self, $cmd) = @_;
50
51 $cmd eq "searchable-scrollback:start"
52 and $self->enter;
45 53
46 () 54 ()
47} 55}
48 56
49sub on_action { 57sub on_action {
92 $self->pty_ev_events ($self->{pty_ev_events}); 100 $self->pty_ev_events ($self->{pty_ev_events});
93 101
94 delete $self->{manpage_overlay}; 102 delete $self->{manpage_overlay};
95 delete $self->{overlay}; 103 delete $self->{overlay};
96 delete $self->{search}; 104 delete $self->{search};
105 delete $self->{found};
97} 106}
98 107
99sub idle { 108sub idle {
100 my ($self) = @_; 109 my ($self) = @_;
101 110
122 } while $text =~ /$re/g; 131 } while $text =~ /$re/g;
123 132
124 $self->{row} = $row; 133 $self->{row} = $row;
125 $self->view_start (List::Util::min 0, $row - ($self->nrow >> 1)); 134 $self->view_start (List::Util::min 0, $row - ($self->nrow >> 1));
126 $self->want_refresh; 135 $self->want_refresh;
127 last; 136 return;
128 } 137 }
129 138
130 $row = $dir < 0 ? $line->beg - 1 : $line->end + 1; 139 $row = $dir < 0 ? $line->beg - 1 : $line->end + 1;
131 } 140 }
132 } 141 }
133 142
134 $self->scr_bell unless $self->{found}; 143 $self->scr_bell;
135} 144}
136 145
137sub refresh { 146sub refresh {
138 my ($self) = @_; 147 my ($self) = @_;
139 148

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines