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_macro.al < prev    next >
Text File  |  2005-04-27  |  678b  |  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 329 "lib/Term/ReadLine/Zoid/ViCommand.pm (autosplit into blib/lib/auto/Term/ReadLine/Zoid/ViCommand/vi_macro.al)"
  7. sub vi_macro {
  8.     my ($self, undef, $cnt) = @_;
  9.     my $n = $self->_get_chr;
  10.     #print STDERR "macro arg was: $n\n";
  11.     return $self->bell unless $n =~ /^\w$/;
  12.     return unless exists $$self{config}{aliases}{'_'.$n};
  13.     my $macro = $$self{config}{aliases}{"_$n"};
  14.     for (1..$cnt) {
  15.         $self->switch_mode();
  16.         $self->press($macro);
  17.     }
  18. }
  19.  
  20. # end of Term::ReadLine::Zoid::ViCommand::vi_macro
  21. 1;
  22.