- Notifications
You must be signed in to change notification settings - Fork0
utsukushii/LT-Perl
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
This plugin forLight Table implements the following features for the Perl language:
- REPL (Read Eval Print Loop) - The result of evaling a Perl expression gets placed to the right of your code.
- Instarepl (Instant Read Eval Print Loop) - The code is evaluated as you type.
- Watches - You can expose variables used to compute an expression.
From within LightTable perform the following actions:
- Run the
Plugins: Show plugin managercommand to select Perl from the available plugin list. - Run the
App: Reload behaviorscommand from within LightTable or restart LightTable.
Note, on Windows you may have to set the path to Perl in user.behaviors with:editor.perl [(:lt.objs.langs.perl/perl-exe "C:\\Perl\\bin\\perl.exe")]
You will need to ensure that the following Perl modules are installed on your machine. Some of these come with system Perl.
- IO::Socket::INET
- Cwd
- JSON
- PPI
- Devel::REPL
- Devel::REPL::Plugin::History
- Devel::REPL::Plugin::LexEnv
- Devel::REPL::Plugin::MultiLine::PPI
- Devel::REPL::Plugin::DDC
- Data::Dumper::Concise
- Lexical::Persistence
The easiest way to do that is to usecpanm. If you do not have cpanm on your system then you caninstall it rather easily.
To start, use the LightTable's workspace manager to open a Perl file.
If you want to see the results of evaling your Perl expressions then do the following:
- Run the
Connect: Add connectioncommand and select the Perl client. The plugin will prompt you to select the directory where your Perl project is located. - Press
cntrl/cmd-shift-enterto evaluate the file.
If you want to just type your code and have it eval as you type then do the following:
- Run the
Connect: Add connectioncommand and select the Perl client. The plugin will prompt you to select the directory where your Perl project is located. - Run the
Perl: Toggle instarepl modecommand. This command will also add a toggle button labeled "live" in the upper right corner of the screen. You can click this button to toggle the live mode on or off.
If you want to see the value of variables used in an expression then you can setup some watches to view them; however, you can only place watches where a function call could also be placed.
- Highlight a variable and press
alt-w. - Press
cntrl/cmd-shift-enterto evaluate the file.
To remove a watch, just place your cursor over it and pressalt-shift-w.
I have only tested this in the following environment:
- Mac OS 10.8.5
- Perl 5.12
- LightTable 0.6.4
- 0.1.0 -- A "live" toggle button is now shown when the "toggle instarepl mode" command is run.
- 0.0.9 -- Added .gitignore.
- 0.0.8 -- BUGFIX: Compilation errors produced the wrong line number.
- 0.0.7 -- BUGFIX: Increased debounce for a smoother instarepl experience.
- 0.0.6 -- BUGFIX: Watches now work in the instarepl.
- 0.0.5 -- BUGFIX: Watches were broken.
- 0.0.4 -- Added instarepl.
- 0.0.3 -- Bump version.
- 0.0.2 -- Added codemirror code.
- 0.0.1 -- Initial version with basic REPL and watches.
This plugin was heavily inspired-by/copied-from the Python and Ruby Instarepl plugins.
Copyright (C) 2014 utsukushii
Distributed under the GPLv3, see LICENSE.md for the full text.
About
Perl Plugin for LightTable
Resources
License
Uh oh!
There was an error while loading.Please reload this page.