this is my problem: I need run some code every time I open a new repl, searching in google I found that I can use the file init.clj or the user.clj (with Leiningen)

This is the code I need to run:

(set! *print-length* 103)  
(println "hello")
(println *print-length*)

and these are the results with both file:

[~/project]$ lein repl
hello    <- this is the println, so the file is excecuted  
103      <- this is the println of *print-length* apparently change  
REPL started; server listening on localhost port 20875  
user=> *print-length*  
nil      <- but the val of *print-length* dont change

there is something I need to do or I have some error?

thanks to all

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

(alter-var-root #'*print-length (constantly 103)) in ~/user.clj works for me.

As far as I know set! doesn't work outside of a binding's dynamic scope.

link|improve this answer
Tank you, this work! :D – patz Jan 5 at 19:39
you know how to put a function "use" to always use a ns?, I have the line (use '[clojure.contrib.string :exclude [repeat butlast drop partition get reverse take]]) but does not work – patz Jan 5 at 19:48
@patz try making a new question :) – wrongusername Jan 6 at 2:47
feedback

lein's init.clj runs in the leiningen process, not in your project process. See https://github.com/technomancy/leiningen (search for init.clj)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.