Questions tagged [la-clojure]

The Clojure plugin for JetBrains' IDE "IntelliJ IDEA".

La Clojure is a Clojure development plugin for JetBrains' IDE "IntelliJ IDEA."

From JetBrains' La Clojure plugin page:

Provides Clojure language support: syntax and error highlighting, completion, navigation and refactorings.

IDEA was born as an IDE for Java development but meanwhile has plugins for lots of other languages, including Clojure. For those more familiar with Eclipse, "La Clojure" is the IDEA equivalent of the Eclipse plugin "CounterClockWise."

From a user feedback on that same page:

La Clojure is by far the best clojure dev plugin this side of IDEs :) La Clojure (together with the Leiningen plugin) just feels right.

12 questions
7
votes
2 answers

How to run/debug compojure web app via counterclockwise (or la clojure)

I'm trying to write my first web app in compojure. I'm using ccw, and I File-New-Project, Clojure Project and use the "compojure" leiningen template. End up with project.clj looking like (defproject asdf "0.1.0-SNAPSHOT" :description "FIXME:…
lobsterism
  • 3,469
  • 2
  • 22
  • 36
6
votes
0 answers

leiningen midje tests not working in Intellij

Consider the following (minimal) leiningen project ./project.clj: (defproject repro "0.1.0-SNAPSHOT" :dependencies [[org.clojure/clojure "1.5.1"] [midje "1.5.1"]]) ./repro/src/repro/core.clj: (ns…
Reb.Cabin
  • 5,426
  • 3
  • 35
  • 64
3
votes
1 answer

How to load single clojure file with dependencies using Clojure REPL (La Clojure)?

I am using La Clojure plugin for IntelliJ IDEA to load my clj file, then to retrieve the function inside that file. My Test.clj file has the following content: (ns test.Test (:require [clojure.tools.logging :as logger]) ) (defn addx [a b c] …
zhanbo_kz
  • 85
  • 5
3
votes
0 answers

Clojure compiler messages in IntelliJ IDEA / La Clojure

Versions: IDEA: 12.0.4 LaClojure: 0.5.228 I'm developing a mixed Clojure/Java project, with a Clojure main method calling Java and other Clojure code. This project worked in Eclipse. Upon trying to move the project to IntelliJ IDEA, I'm failing…
Carl Smotricz
  • 66,391
  • 18
  • 125
  • 167
3
votes
1 answer

La Clojure Repl set java.library.path for dll

Would like to use the La Clojure Repl with jacob. So I need to set -Djava.library.path=D:/opensource/jacob-1.17-M2 Cannot find this for the REPL
Ralf Sigmund
  • 517
  • 1
  • 4
  • 13
2
votes
1 answer

How to debug a Clojure file in IntelliJ?

No breakpoint can be set on line 5, which contains [x]. IntelliJ won't let me do so. I used different plugin, such as La Clojure and Cursive. Both stop at line 3 rather than line 5. So, how people step into the code in Clojure? Is there any syntax…
CodeFarmer
  • 2,644
  • 1
  • 23
  • 32
2
votes
1 answer

La Clojure - keyboard shortcut to go to REPL console

When I program Clojure in IntelliJ, one task I do most often is navigating back and forth between my editor and my REPL. When I am in my REPL console, I can press ESC to jump back to my editor. What about jumping to REPL console from my editor?
bizi
  • 3,398
  • 2
  • 27
  • 28
1
vote
1 answer

Can't open clojure the project in Intellij IDEA with La Clojure

I was going through this tutorial http://wiki.jetbrains.net/intellij/Getting_started_with_La_Clojure and I got stuck here http://wiki.jetbrains.net/intellij/Getting_started_with_La_Clojure#Opening_project_in_IntelliJ_IDEA. I don't know way but…
1
vote
2 answers

Cannot see project.clj in leiningen project using intelliJ idea?

I am using IntelliJ Idea 12.14 Community Edition on Windows 7. I have installed leiningen separately. I was trying to create a new project using idea. I have also installed the La Clojure plugin and re started Idea several times. Neither do I find…
Amogh Talpallikar
  • 12,084
  • 13
  • 79
  • 135
1
vote
2 answers

La Clojure - What key is 'Meta' bound to on Windows environment?

In IntelliJ IDEA's La Clojure plugin, what key is 'Meta' bound to on Windows environment? Here is a screenshot of where it occurs:
missingfaktor
  • 90,905
  • 62
  • 285
  • 365
0
votes
1 answer

Simple clojure/refer to clojure throwing compilation error

I'm new to Clojure development and I was following Eric Rochester tutorials on the subject, most precisily: Tokenization Part 4 When namespaces are introduced Eric asks the users to write this header on a file named word.clj as I did: (in-ns…
bitoiu
  • 6,893
  • 5
  • 38
  • 60
0
votes
2 answers

Clojure compiler error: No such file or directory

I'm trying to execute a simple Clojure Test from IntelliJ and "La Clojure" plugin. When I try to compile the Clojure file (helloTest.clj) I get this error: Clojure Compiler: java.io.IOException: No such file or directory,…
Dr. No
  • 1,306
  • 5
  • 28
  • 57