Rename synonym/dictionary definition lookup commands

This commit is contained in:
Henrik Lissner 2020-01-02 19:53:49 -05:00
parent 56ef4d8800
commit 5fe658e583
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -328,7 +328,7 @@ Otherwise, falls back on `find-file-at-point'."
;;; Dictionary ;;; Dictionary
;;;###autoload ;;;###autoload
(defun +lookup/word-definition (identifier &optional arg) (defun +lookup/dictionary-definition (identifier &optional arg)
"Look up the definition of the word at point (or selection)." "Look up the definition of the word at point (or selection)."
(interactive (interactive
(list (+lookup-symbol-or-region) (list (+lookup-symbol-or-region)
@ -343,7 +343,7 @@ Otherwise, falls back on `find-file-at-point'."
((user-error "No offline dictionary defined yet")))) ((user-error "No offline dictionary defined yet"))))
;;;###autoload ;;;###autoload
(defun +lookup/word-synonyms (identifier &optional arg) (defun +lookup/synonyms (identifier &optional arg)
"Look up and insert a synonym for the word at point (or selection)." "Look up and insert a synonym for the word at point (or selection)."
(interactive (interactive
(list (+lookup-symbol-or-region) (list (+lookup-symbol-or-region)