mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
lang/web: add bang to :enhtml & :dehtml
BANG = copy result to clipboard instead of inserting into buffer.
This commit is contained in:
@ -2,20 +2,25 @@
|
|||||||
;;;###if (featurep! :editor evil)
|
;;;###if (featurep! :editor evil)
|
||||||
|
|
||||||
;;;###autoload (autoload '+web:encode-html-entities "lang/web/autoload/evil" nil t)
|
;;;###autoload (autoload '+web:encode-html-entities "lang/web/autoload/evil" nil t)
|
||||||
(evil-define-operator +web:encode-html-entities (beg end &optional input)
|
(evil-define-operator +web:encode-html-entities (beg end &optional bang input)
|
||||||
"Encodes HTML entities in INPUT or the selected region."
|
"Encodes HTML entities in INPUT or the selected region."
|
||||||
(interactive "<r><a>")
|
(interactive "<r><!><a>")
|
||||||
(cond (input
|
(cond (input
|
||||||
(insert (+web-encode-entities input)))
|
(let ((result (+web-encode-entities input)))
|
||||||
|
(if bang
|
||||||
|
(kill-new result)
|
||||||
|
(insert result))))
|
||||||
((and beg end)
|
((and beg end)
|
||||||
(+web/encode-entities-region beg end))))
|
(+web/encode-entities-region beg end))))
|
||||||
|
|
||||||
;;;###autoload (autoload '+web:decode-html-entities "lang/web/autoload/evil" nil t)
|
;;;###autoload (autoload '+web:decode-html-entities "lang/web/autoload/evil" nil t)
|
||||||
(evil-define-operator +web:decode-html-entities (beg end &optional input)
|
(evil-define-operator +web:decode-html-entities (beg end &optional bang input)
|
||||||
"Decodes HTML entities in INPUT or the selected region."
|
"Decodes HTML entities in INPUT or the selected region."
|
||||||
(interactive "<r><a>")
|
(interactive "<r><!><a>")
|
||||||
(cond (input
|
(cond (input
|
||||||
(insert (+web-decode-entities input)))
|
(let ((result (+web-decode-entities input)))
|
||||||
|
(if bang
|
||||||
|
(kill-new result)
|
||||||
|
(insert result))))
|
||||||
((and beg end)
|
((and beg end)
|
||||||
(+web/decode-entities-region beg end))))
|
(+web/decode-entities-region beg end))))
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user