NAME

TextMate::JumpTo - Tell TextMate to jump to a particular file, line

VERSION

This document describes TextMate::JumpTo version 0.01

SYNOPSIS

  use TextMate::JumpTo qw(jumpto);
  
  jumpto( file => 'mysrc.pl', line => 123 );

DESCRIPTION

INTERFACE

jumpto

Instruct TextMate to jump to the specified file, line and column. The arguments are a list of key, value pairs:

jumpto( file => 'splendid.pl', line => 12, column => 3 );

Possible arguments are:

  • file

    The path to the file to go to.

  • line

    The (one based) line number to go to.

  • column

    The (one based) column to go to.

  • bg

    True to leave TextMate in the background. By default a call to jumpto will bring TextMate to the foreground.

CONFIGURATION AND ENVIRONMENT

TextMate::JumpTo requires no configuration files or environment variables.

DEPENDENCIES

None.

INCOMPATIBILITIES

None reported.

BUGS AND LIMITATIONS

No bugs have been reported.

Please report any bugs or feature requests to bug-textmate-jumpto@rt.cpan.org, or through the web interface at http://rt.cpan.org.

AUTHOR

Andy Armstrong <andy@hexten.net>

LICENCE AND COPYRIGHT

Copyright (c) 2008, Andy Armstrong <andy@hexten.net>.

This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic.