What determines the length of a Clojure REPL story?

Where is it installed? I use Lein REPL and LaClojure REPL, I can not find where the length of the story is set.

+4
source share
1 answer

There is an idea.cycle.buffer.size parameter in the idea.cycle.buffer.size file (located in the bin directory):

 --------------------------------------------------------------------- This option controls console cyclic buffer: keeps the console output size not higher than the specified buffer size (Kb) Older lines are deleted. In order to disable cycle buffer use idea.cycle.buffer.size=disabled -------------------------------------------------------------------- idea.cycle.buffer.size=1024 

Also at fooobar.com/questions/773040 / ... Micah mentions the set history-size 10000 parameter in the .inputrc file

+3
source

Source: https://habr.com/ru/post/1439269/


All Articles