tpapp / julia-repl

Run an inferior Julia REPL in a terminal inside Emacs
Other
170 stars 35 forks source link

Do not echo sent commands in Julia REPL #71

Closed scheidan closed 4 years ago

scheidan commented 4 years ago

I'm a happy julia-repl user, thanks for the work! From time to time there is one feature I miss from ESS:

Currently every command that is sent, is echoed in the Julia REPL. If a large code region is sent, the julia buffer gets cluttered quickly. So I was wondering if an option exist to not show the commands, only the results.

In ESS this behaviour can be obtained by setting ess-eval-visibly to nil, see documentation here.

tpapp commented 4 years ago

julia-repl operates by simply sending stuff to an ANSI terminal, so unfortunately I don't see a way to avoid echoing. Note that large whole files will be just sent with an include by julia-repl-send-buffer.

Generally I would recommend Revise.jl for working with larger pieces of code.