Hi, basically it is working well but I want to remove repetitive msg when evaluated to REPL.
for instance, when below code
nums = [1, 2, 3, 4, 5]
def double(x): return x * 2
list(map(double, nums))
is evaluated by C-c C-c
>>>
__PYTHON_EL_eval("nums = [1, 2, 3, 4, 5]\ndef double(x): return x * 2\nlist(map(double, nums))", "/Users/darren/Work/ace/pyth/codi/01-iterations/binary-gap.py")
[2, 4, 6, 8, 10]
Can I remove this msg?
__PYTHON_EL_eval("nums = [1, 2, 3, 4, 5]\ndef double(x): return x * 2\nlist(map(double, nums))", "/Users/darren/Work/ace/pyth/codi/01-iterations/binary-gap.py")
So it just shows like
>>>
[2, 4, 6, 8, 10]
Thanks in advance!
You must log in or register to comment.
Check
C-h v comint-process-echoes
in that buffer.If it’s
nil
, try(setq-local comint-process-echoes t)
If that fixes it, then you can use this repl’s major mode hook to do that automatically.