NAME
Devel::IntelliPerl::Editor::TextMate - IntelliPerl integration for TextMate
SYNOPSIS
out=`perl -MDevel::IntelliPerl::Editor::TextMate -e 'run' $TM_LINE_NUMBER $TM_LINE_INDEX "$TM_FILEPATH" 2>&1`
lines=`echo "$out" | wc -l`;
if (($lines > 1)); then
exit_show_tool_tip "$out"
else
exit_insert_text "$out"
fi
Create a new Command in the Bundle Editor and paste this bash script. Set "Input" to "Entire Document" and "Output" to "Discard". If you set "Scope Selector" to source.perl
this script is run only if you are editing a perl file.
To run this command using a key set "Activation" to "Key Equivalent" and type the desired key in the box next to it.
METHODS
editor
Set to TextMate
.
run
This method is exported and invokes Devel::IntelliPerl.
SEE ALSO
http://macromates.com/, Devel::IntelliSense
COPYRIGHT & LICENSE
Copyright 2009 Moritz Onken, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.