mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
11 lines
236 B
EmacsLisp
11 lines
236 B
EmacsLisp
;;; extra-text.el
|
|
|
|
;; TODO
|
|
(evil-define-operator narf/html-encode (beg end)
|
|
"HTML encode the selected region."
|
|
(interactive "<r>")
|
|
(shell-command-on-region beg end "sort" nil t))
|
|
|
|
(provide 'extra-text)
|
|
;;; extra-text.el ends here
|