Clojure
Clojure copied to clipboard
Light Table Clojure language plugin
- It Seem Lein Light-table Repl... keep executed, even if we properly connect to boot nrepl with ```clojure (deftask lt [] (swap! boot.repl/*default-dependencies* concat '[[lein-light-nrepl "0.3.3"]]) (swap! boot.repl/*default-middleware* conj 'lighttable.nrepl.handler/lighttable-ops))...
its realy trouble me, when i want to eval in non supported file-types,... like build.boot, markdown, or .org every time i evaluate , its trigger create connection to clojure LightTable-Repl,...
Using LightTable boot project `core.clj` connected to remote nREPL, ```clj (defn example "Just a simple example" [x] (identity x)) example ;; Hit for docstring ``` kills the editor, needs a...
clojure 1.9.0-alpha12 has broken a lot of old code that relied on "features" that didn't really exist, but worked anyway. Moving forward, it seems like spec is allowing clojure.core to...
This is a meta issue to track clojure(script) autocompletion scenarios I'd like for us to handle (will keep up to date). I'd love for us to be as good if...
From LightTable/LightTable#2092, the first two comments by the person that originally opened the issue: > When writing clojure and trying to evaluate an expression like `@foo` at the highest level,...
I've looked through the issues on this repo, and looked through issues on Google Groups, but don't quite know what would be different about my setup -- I don't see...
Type `:3` in a Clojure window and select it. Hit ctrl-enter to evaluate. Expected result: The keyword `:3` (Try it in a hash table - it works). Actual result: Stack...
Right now, if I evaluate something that returns a function, the little result just shows "fn". You can't tell if it's a symbol or whatever. Seems like functions are special...