[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#32315:
From: |
Carlos Pita |
Subject: |
bug#32315: |
Date: |
Wed, 1 Aug 2018 22:19:58 -0300 |
Here is a workaround:
(advice-add 'comint-send-input
:around (lambda (f &rest args)
(when (eq major-mode 'inferior-python-mode)
(cl-letf (((symbol-function 'g)
(symbol-function 'add-text-properties))
((symbol-function 'add-text-properties)
(lambda (start end properties
&optional object)
(unless (eq (nth 3 properties)
'comint-highlight-input)
(g start end properties object)))))
(apply f args)))))
- bug#32315:, Carlos Pita, 2018/08/01
- bug#32315:,
Carlos Pita <=