Function: evil-remove-yank-excluded-properties
evil-remove-yank-excluded-properties is a byte-compiled function
defined in evil-common.el.
Signature
(evil-remove-yank-excluded-properties TEXT)
Documentation
Remove yank-excluded-properties from TEXT.
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-common.el
(defun evil-remove-yank-excluded-properties (text)
"Remove `yank-excluded-properties' from TEXT."
(if (eq yank-excluded-properties t)
(set-text-properties 0 (length text) nil text)
(remove-list-of-text-properties 0 (length text)
yank-excluded-properties text)))