The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

DB::Pluggable::Plugin::TypeAhead

VERSION

version 1.12

SYNOPSIS

    $ cat ~/.perldb
    use DB::Pluggable;
    DB::Pluggable->run_with_config(\<<EOINI)
    [TypeAhead]
    type = {l
    type = c
    ifenv = DBTYPEAHEAD
    EOINI

DESCRIPTION

If you use the debugger a lot, you might find that you enter the same commands after starting the debugger. For example, suppose that you usually want to list the next window of lines before the debugger prompt - so you would enter {l - and that you usually have a breakpoint when running the debugger - so you would enter c. So you could use a plugin configuration as shown in the synopsis.

If you want to control whether this typeahead is applied, you can use the optional ifenv configuration key. If specified, its value is taken to be the name of an environment variable. When the plugin runs, the typeahead will only be applied if that environment variable has a true value.

So to continue the example from the synopsis, if you wanted to enable the typeahead, you would run your program like this:

    DBTYPEAHEAD=1 perl -d ...

The inspiration for this plugin came from Ovid's blog post at http://blogs.perl.org/users/ovid/2010/02/easier-test-debugging.html.

NAME

DB::Pluggable::Plugin::TypeAhead - Debugger plugin to add type-ahead

METHODS

afterinit

Pushes the commands to the debugger's typeahead.

AUTHORS

  • Keith Carangelo <mail@kcaran.com>

  • Marcel Gruenauer <marcel@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2008 by Marcel Gruenauer <marcel@cpan.org>.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.