Why is my leiningen repl showing too many tips?

D:\src>lein repl
nREPL server started on port 57504 on host 127.0.0.1
REPL-y 0.3.0
Clojure 1.5.1
    Docs: (doc function-name-here)
          (find-doc "part-of-name-here")
  Source: (source function-name-here)
 Javadoc: (javadoc java-object-or-class-here)
    Exit: Control+D or (exit) or (quit)
 Results: Stored in vars *1, *2, *3, an exception in *e

user=> (str "I don't want empty prompt!")
"I don't want empty prompt!"
user=>
user=> (println "Oh....")
Oh....
nil
user=>
user=> (exit)
Bye for now!

(screen shot here . I want to paste here, but I don't have 10 reputation, sorry)

You may find an unnecessary blank message, for example user=>. Of course, this is not necessary, and I did not press the enter key.

I have two questions:

  • Is this normal behavior? (I'm sure this is not the case!)
  • and if it is not regular, do you have a solution to this problem?

My environment:

  • Windows 8 64bit (Japanese)
  • Embed lein -v

    Leiningen 2.3.4 on Java 1.7.0_21 Java HotSpot(TM) 64-Bit Server VM

+4
source share
1 answer

: ( , Windows) CR + LF . UNIX - , , /, - , , Enter.

, - <your terminal> disable crlf, .

+2

All Articles