branch: externals/termint commit 3ee989c17445cfd8f48ded96f43fdcb8b3a4eef4 Author: Milan Glacier <d...@milanglacier.com> Commit: Milan Glacier <d...@milanglacier.com>
doc: update the docstring for generated evil commands. --- termint.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/termint.el b/termint.el index a0398aefde..1ec2e9fbc7 100644 --- a/termint.el +++ b/termint.el @@ -527,18 +527,18 @@ with that number." repl-name) (when (require 'evil nil t) (evil-define-operator ,send-region-operator-name (beg end session) ,(format - "A evil operator wrapper around `%s'. + "Evil operator for sending text objects, motions, or regions to %s. With a numeric prefix SESSION, send the region to the %s process -associated with that number" send-region-func-name repl-name) +associated with that number" repl-name repl-name) :move-point nil (interactive "<r>P") (,send-region-func-name beg end session)) (evil-define-operator ,source-region-operator-name (beg end session) ,(format - "A evil operator wrapper around `%s'. + "Evil operator for sourcing text objects, motions, or regions to %s. With a numeric prefix SESSION, send the region to the %s process -associated with that number" source-region-func-name repl-name) +associated with that number" repl-name repl-name) :move-point nil (interactive "<r>P") (,source-region-func-name beg end session)))