home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 December (Special) / PCWorld_2005-12_Special_cd.bin / Bezpecnost / lsti / lsti.exe / framework-2.5.exe / vi_topic.al < prev    next >
Text File  |  2005-04-27  |  743b  |  22 lines

  1. # NOTE: Derived from lib/Term/ReadLine/Zoid/ViCommand.pm.
  2. # Changes made here will be lost when autosplit is run again.
  3. # See AutoSplit.pm.
  4. package Term::ReadLine::Zoid::ViCommand;
  5.  
  6. #line 631 "lib/Term/ReadLine/Zoid/ViCommand.pm (autosplit into blib/lib/auto/Term/ReadLine/Zoid/ViCommand/vi_topic.al)"
  7. sub vi_topic {
  8.     my ($self, undef, $cnt) = @_;
  9.     $cnt = ($cnt == 1 and $$self{vi_command} !~ /^1/) ? -1 : $cnt-1;
  10.     return $self->bell unless @{$$self{history}};
  11.     my $buffer = join "\n", $$self{history}[0];
  12.     $buffer =~ s/^\s+|\s+$//g;
  13.     my @words = split /\s+/, $buffer;
  14.     my $string = " $words[$cnt]";
  15.     $self->substring($string);
  16.     $$self{pos}[0] .= length $string;
  17.     $self->switch_mode();
  18. }
  19.  
  20. # end of Term::ReadLine::Zoid::ViCommand::vi_topic
  21. 1;
  22.