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
2
votes
1 answer

Matplotlib inline plots in LightTable fail to appear (in Anaconda Python 2.2.0 but not 2.1.0)

I'm using LightTable with the Anaconda Python distribution (for Mac). I'm trying to get the Matplotlib inline plots to appear for a simple code like the following (but with the plt.show() command uncommented): # -*- coding: ascii -*- import numpy as…
nathanielng
  • 1,645
  • 1
  • 19
  • 30
2
votes
1 answer

Clojure console spits out 'unsigned-bit-shift-right' warning on simple HelloWorld

I'm doing my first steps with Clojure today and I encountered the first confusing obstacle right off the bat! I've built a new Leiningen(2.5.1) project and just want to run the default code, which is: (ns wavescript.core (:gen-class)) (defn…
Yannic Welle
  • 207
  • 2
  • 10
2
votes
1 answer

How to Live-Edit JavaScript in LightTable?

How to Live-Edit JavaScript in LightTable? I'm currently injecting my JS in the LT browser by 'eval' (ctrl+shift+enter) every time. I'm looking for the JS equivalent of the HTML_live plugin. https://github.com/existentialmutt/lighttable-html-live
aksanoble
  • 2,480
  • 4
  • 18
  • 19
2
votes
2 answers

How do you add custom syntax highlighting for an additional language to Light Table?

Do you need to write a plugin for this or can you do it e.g. with the user.behaviors file? Where can I find a tutorial and comprehensive documentation on this?
mydoghasworms
  • 18,233
  • 11
  • 61
  • 95
2
votes
1 answer

Can I generate images in Clojure and show them inline in LightTable REPL?

I want to write some Clojure code which would manipulate images, and I wonder if there's a way to show them in the LightTable REPL inline?
Valentin Golev
  • 9,965
  • 10
  • 60
  • 84
2
votes
1 answer

How to exclude subfolders and files in the Search pane of LightTable?

What is the syntax of the Locations field in the Find and Replace pane of LightTable? (which appears when hitting CTRL-SHIFT-F, or CTRL+SPACE then Searcher: show) I would like to exclude all files of the docs/ subfolder, as well as all *.txt and…
olange
  • 165
  • 2
  • 7
2
votes
1 answer

How to integrate libraries (clojars) into Lightable plugins

As exercise to gain experience with ClojureScript I am writing a LightTable Plugin and I find no way to successfully use any standard library, I read the official documentation and even updated it to reflect latest changes regarding paths etc.. I…
Jaime Agudo
  • 8,076
  • 4
  • 30
  • 35
2
votes
2 answers

How do I add a library to LightTable so that when I use instarepl it will always have said library?

I'd like to add certain library dependencies to LightTable as a whole so that when I am messing around learning new stuff, I don't have to create a new project as a whole. Let's say I want to always have access to these libraries: math.combinatorics…
dmbennett
  • 109
  • 1
  • 8
2
votes
0 answers

How to add a live console session inside an imbeded window to LightTable?

It would be nice to have an imbedded console within a sub-window within LightTable to reduce the amount of open windows during development for all programing languages. Preferably this would work for all platforms, but at the least one for Linux…
zzelman
  • 425
  • 5
  • 14
2
votes
0 answers

play-clj tutorial dependency on unretrievable file

I've tried following the steps of the play-clj tutorial. I can't seem to run anything in my light table REPL because I can't retrieve files from Maven and clojars.org/repo/ . I'm using Leiningen as my package manager. This is the error message I…
2
votes
1 answer

LightTable - Adding auto complete keywords

Is there a way to add additional auto complete keywords? From my experience with the IDE/Editor, some languages, like clojure, already have every function native to the language available as an auto complete word. Is it possible to add, say, every…
user3594595
2
votes
1 answer

Using Lighttable with remote nrepl

I want to start nREPL from code and let Lighttable connect to it. Here is my attempt: (ns test (:require [clojure.tools.nrepl.server :refer [start-server default-handler]] [lighttable.nrepl.handler :refer [lighttable-ops]]) …
amadeoh
  • 95
  • 6
2
votes
1 answer

Install Light Table editor on Windows 7

I am trying to download/install Light Table. I want it to show up in the start menu. When downloading light table, it shows up as a Zip folder in the TEMP file. I've extracted the files and am unable to get it to show up in the start menu. Normally…
user3671993
  • 21
  • 1
  • 2
2
votes
1 answer

Using Clojurescript with Light Table

I have been trying to use Clojure Script with Light Table and lein-cljs without much success. The main problem seems to be with dependencies. It seems like evaluating a cljs (ctrl-shift-enter) page does not recursively evaluate the dependencies. …
zenna
  • 9,006
  • 12
  • 73
  • 101
2
votes
1 answer

Install Light Table, worked for python then set it up for Julia now having problems with python

I installed Light Table and it seemed to work with my current set up Python. However, once I set up Julia by modifying the Settings: User behaviors it no longer seems to work for me and give me the error. Looks like there was an issue trying to…
Francis Smart
  • 3,875
  • 6
  • 32
  • 58