Fork me on GitHub
#cursive
<
2020-07-12
>
Vincent Cantin03:07:02

Is it possible to have the size of the REPL view match the real size on the screen (i.e. without a scroll bar)? That’s to have the display of Clojure data been printed without me having to scroll the view toward the right side each time I am evaluating a new expression.

cfleming00:07:18

Unfortunately that’s actually surprisingly tricky. It’s also sort of transient, since it depends on the size of your REPL at any particular time (i.e. if you later resize your REPL previously printed forms will be wrong. Currently this just uses the standard editor right margin width.

cfleming00:07:57

I can investigate making that dynamic based on the size of the window, could you file an issue for that?

👌 3