In emacs lisp how do I silence "Process python-process finished"
In emacs lisp how do I silence "Process python-process finished"
1 2 3 | (define-advice python-process (:after run) (when (not python-process-message) (message "Process python-process finished"))) |
Testing if the previous output contains the string set-process-sentinel
: False
In emacs lisp how do I silence "Process python-process finished"
In emacs lisp how do I silence "Process python-process finished"
1 2 3 | (defun my-process-filter-function (string) (not (string-match "Process python-process finished" string))) (setq process-filter-functions '(my-process-filter-function)) |
Testing if the previous output contains the string set-process-sentinel
: False
In emacs lisp how do I silence "Process python-process finished"
In emacs lisp how do I silence "Process python-process finished"
1 2 | (add-hook 'python-process-post-command-hook (lambda () (message "Process python-process finished"))) |
Testing if the previous output contains the string set-process-sentinel
: False
In emacs lisp how do I silence "Process python-process finished"
In emacs lisp how do I silence "Process python-process finished"
Testing if the previous output contains the string set-process-sentinel
: False
In emacs lisp how do I silence "Process python-process finished"
In emacs lisp how do I silence "Process python-process finished"
1 | (setq python-shell-silent-process-finished t) |
Testing if the previous output contains the string set-process-sentinel
: False