minus-squarePatient_Chance_3795@alien.topBtoEmacs@communick.news•How can I remove repetition in python REPL?linkfedilinkEnglisharrow-up1·1 year agoSome answers here https://stackoverflow.com/questions/75103221/emacs-remove-python-el-eval-message (defun python-comint-filter (output) (let* ((regexp "^.*__PYTHON_EL_\\(.*\\)\\(.*\\)[[:space:]]*$") (lines (split-string output "\n")) (filtered-lines (remove-if (lambda (line) (or (string-match-p regexp line) (string-match-p "^\\s-*$" line))) lines))) (if (equal (length lines) (length filtered-lines)) output (mapconcat 'identity filtered-lines "\n")))) linkfedilink
Some answers here
https://stackoverflow.com/questions/75103221/emacs-remove-python-el-eval-message