Questions tagged [counterclockwise]

Counterclockwise is an Eclipse plugin to help developers write Clojure code.

Counterclockwise is an plugin helping develop solutions with .

62 questions
1
vote
1 answer

How to make Eclipse/Counterclockwise use Macports installed Clojure

I'm very new to clojure and after some hours fiddling with Netbeans/Enclojure and Eclipse/Counterclockwise I finally set for Eclipse/Counterclockwise - just because it was the first one I was able to get running actually. But, in the REPL, I get…
jbssm
  • 6,861
  • 13
  • 54
  • 81
1
vote
2 answers

How to determine Arc's Orientation in Java

I am generating 2D arcs using the following code. final Arc2D.Double arcPath = new Arc2D.Double(); arcPath.setArcByCenter(centerPoint.getX(), centerPoint.getY(), radius, fDXFArc.getStartAngle(), fDXFArc.getTotalAngle(), Arc2D.OPEN); The arcs are…
1
vote
0 answers

CounterClockWise Repl does not print result

I follow gruid install CounterClockwise in eclipse(Juno) and run the sample project, the Repl is up, but it's only show the command what I type, without result. For example, when i type (+ 2 3), just show ==> (+ 2 3). The result is also not printed…
1
vote
0 answers

Load file in REPL is not working in Eclipse-counterclockwise

I am a newbie to Clojure and Counterclockwise plugin for Eclipse. I can load the file into REPL for the first time. After that, If I make any changes to the code and try to load into REPL by commands (ctrl+alt+S) or by right-clicking and choosing…
Anand
  • 727
  • 3
  • 14
  • 39
1
vote
1 answer

Cannot Create Project in Eclipse Counterclockwise Clojure Plugin

I just installed the Eclipse Counterclockwise Clojure Plugin, and I cannot create a new Clojure project. The CCW troubleshooting page here says there's a way to fix this, but unfortunately the link is now broken. When I try to create a project there…
Sam Washburn
  • 1,817
  • 3
  • 25
  • 43
1
vote
2 answers

Problems compiling in clojure with Counterclockwise

Hi am totally new to clojure, and have just installed clojure and CounterClockwise. I have created a new clojure project named "myproject". Entering (foo "test") gives : "test Hello, World!" just as expected. When I select the "myproject" in the…
Tom Tallak Solbu
  • 559
  • 6
  • 20
1
vote
1 answer

Using a different profile with eclipse and counterclockwise on leiningen

I'm using Counterclockwise eclipse plugin on a leiningen Clojure project. I need to run a repl from Eclipse and make it load a different leiningen project than the default. Since the default one is being loaded, I get multiple classpath errors on…
Omri
  • 1,058
  • 3
  • 14
  • 26
1
vote
0 answers

How to browse/search Clojure Docs within Eclipse+CounterClockWise?

Three questions here related to Eclipse and Clojure: {:subject read-clojure-docs} Is there a way to browse Clojure docs within Eclipse+CounterClockWise? {:subject read-java-docs} It might be useful if I can search Java Docs in Eclipse as well, is…
Nick
  • 8,451
  • 13
  • 57
  • 106
1
vote
0 answers

leiningen and counterclockwise dependencies issue

I got the following Error while using counterclockwise an Eclipse Ide for Clojure and leiningen Description Resource Path Location Type Leiningen Managed Dependencies issue: problem resolving following dependencies:…
user977828
  • 7,259
  • 16
  • 66
  • 117
1
vote
1 answer

How to see a Clojure function's call hierarchy using Eclipse and CounterClockwise

I am new to Clojure and try to read open source Clojure code using CounterClockwise and eclipse. One issue makes my progress slow is that I don't know how to find out a Clojure function's call hierarchy (something like "open call hierarchy" in Java…
danny
  • 3,046
  • 3
  • 23
  • 28
1
vote
1 answer

Finding and using clojure.contrib.string

I have CounterClockwise for Eclipse and believe clojure.contrib should be installed. However, I can't seem to use it or any of the subfiles such as clojure.contrib.string. If I type as I get the following errors If I type (require…
1
vote
1 answer

Load File In REPL is not available

I am following the basic intro here. Everything is fine until I go to use Command-Option-S which does nothing -- and the "Load File in REPL" in the Clojure menu is grayed out and not selectable. What is the fix for this? In the same menu, the two…
johnbakers
  • 24,158
  • 24
  • 130
  • 258
1
vote
1 answer

Eclipse hangs when trying to debug clojure project

Similar to my earlier question. Eclipse hangs when trying to debug a Clojure project. Earlier I was using Eclipse Kepler on Windows 8, now same thing happens using Eclipse Juno on Windows XP. The Eclipse error log contains the following relevant…
1
vote
1 answer

clojure: how to bind console input to a variable?

I'm trying to learn clojure, but coming from OO background simple things look like mission impossible. For instance, how do I write the function that would accept console input and output it into console as well? I'm trying something like this, but…
Caballero
  • 11,546
  • 22
  • 103
  • 163
1
vote
0 answers

With Leiningen, how do I install documentation?

I forked a library on github (seesaw) and ran "lein install" which made it available as a dependency in my local maven repo. But when I include it as a dependency in my other project, my IDE (eclipse's counterclockwise) can't find the…
Daniel Kaplan
  • 62,768
  • 50
  • 234
  • 356