Questions tagged [lighttable]

Light Table is a multi-platform interactive IDE that lets you modify running programs.

Light Table is a multi-platform interactive IDE that lets you modify running programs.

It provides the real time feedback to not only answer questions about code, but to understand how programs really work.

Website : http://www.lighttable.com/

137 questions
5
votes
1 answer

Python Script not executing in Light Table shows error

Help! i am getting this error again and again....on light table while i m trying to run python code File "C:\Python34\Lib\site.py", line 176 file=sys.stderr) ^ SyntaxError: invalid syntax This is a code with installation.
user3814582
  • 153
  • 2
  • 15
5
votes
2 answers

How do you set default application for `open` command in terminal based on file extension type?

Some time ago I set up Sublime text 2 as my default editor for GIT in the command line terminal. I would now like to change it to LightTable, but am having some trouble. I have set both the VISUAL and EDITOR environment variables to LightTable and…
kurofune
  • 1,055
  • 12
  • 26
5
votes
1 answer

How to associate .hl files to Clojure syntax highlighting in Light Table?

I'd like to get Hoplon (http://hoplon.io/) code highlighted using Light Table.
leontalbot
  • 2,513
  • 1
  • 23
  • 32
5
votes
0 answers

Connecting Light Table to a remote REPL

I cloned a sample Chortles project to test out the remote REPL capabilities of drawbridge. I can connect using lein repl :connect http://user:pass@localhost:5000/repl and dereference scores with @chortles.web/scores in the REPL, which correctly…
Petrus Theron
  • 27,855
  • 36
  • 153
  • 287
5
votes
1 answer

Unable to get basic Lightable features working

I read the following article on lighttable here: http://www.chris-granger.com/2012/04/12/light-table---a-new-ide-concept/. I downloaded light table and the only thing I'm able to get working is code highlighting and the instarepl. To name one thing…
Kevin
  • 24,871
  • 19
  • 102
  • 158
4
votes
1 answer

In LightTable, how do you change Clojure version?

Currently I am using LightTable to run clojure projects, and with Leiningen I can specify a version for a project. However, for .clj files that are not part of a project, it seems the LightTable REPL says the clojure version is 1.5.1. I would like…
user2283597
  • 229
  • 2
  • 20
4
votes
0 answers

How to enable tag auto closing in LightTable?

By tag auto closing I mean that when I add the

tag for instance, the editor should automatically put

after it, leaving the cursor between them so I can add text. Ideally, in case of some tags like
, upon completing the opening
jakub
  • 4,774
  • 4
  • 29
  • 46
4
votes
1 answer

Increase size of console window in LightTable (Juno)

I'd like to increase the size of the console window in LightTable (I'm using the Juno plugin for Julia). I've searched around for a relevant command for the User-behaviour file but haven't found anything. Perhaps I need to edit the theme/skin css…
Colin T Bowers
  • 18,106
  • 8
  • 61
  • 89
4
votes
2 answers

Light Table : parentheses are not auto-closing

I'm trying to edit Clojure/ClojureScript files on Light Table with paredit, but the Plugin does not seem to work. When I open a parenthesis, it is not closed. However the plugin is installed as shows the plugins list. Have I missed some…
Valentin Waeselynck
  • 5,950
  • 26
  • 43
4
votes
2 answers

How to smart-indent files automatically on save in Light Table

I would like to save nicely formatted Clojure code. Eclipse can format code every time a file is saved. It would be nice to have the same in Light Table. Manually, I can do it by selecting all (ctrl+a), then running (ctrl+space) Editor: Smart indent…
4
votes
1 answer

How do I enable Paredit in Light Table?

I'm new to Light Table, and I'm accustomed to using paredit. The plugin manager tells me I've got the Paredit plugin installed, but I can't figure out how to enable it. I can see the paredit commands in the command pane by typing in "paredit", but…
Conan
  • 2,288
  • 1
  • 28
  • 42
4
votes
2 answers

light table paredit surround with parens

How can I take a form and in order to make it an argument of another function surround it with parentheses with one command? For the example below, assume the cursor starts at the beginning and I do not move it throughout. (max 1 2 3) -> ((max 1 2…
shmish111
  • 3,697
  • 5
  • 30
  • 52
4
votes
1 answer

Running a leiningen Clojure project in LightTable

I'm trying to use Clojure to run my Leiningen project. Even though LightTable says it's connected in the connections pane, it won't execute unless I call the main function manually. project.clj: (defproject lein-test "0.1.0-SNAPSHOT" :description…
Rob Lourens
  • 15,081
  • 5
  • 76
  • 91
4
votes
2 answers

LightTable IDE legacy REPL mode?

I found Light Table is a great tool to try Clojure language. It has a handy feature called Instarepl - ;; Anything you type in here will be executed immediately with the results shown on the right. However, I can't find a way to use a legacy REPL…
user1028880
4
votes
2 answers

How do you change the default ESC to exit insert mode in LightTable's Vim?

I'm posting this question largely to provide the answer I've arrived at (because I found nothing elsewhere online and see no questions asking how to do this), to hopefully save future LightTable vim users a bit of time. But I'd also like to hear…
zenshade
  • 57
  • 4
1
2
3
9 10