emacs-powerthesaurus is a plugin that integrates Emacs with the amazing powerthesaurus.org service for finding synonyms, antonyms, and related terms.
Install emacs-powerthesaurus from MELPA with the following command:
M-x package-install [RET] powerthesaurus [RET]
powerthesaurus-lookup-dwim
is the main interactive function, and it retrieves results from powerthesaurus.org. It determines the search term based on the active region or the word at point and prompts the user to select the type of query to perform (synonyms, antonyms, related terms, definitions, or sentences).
By default, synonyms, antonyms, and related terms replace the original term, while sentences and definitions display in a separate pop-up buffer. To override this behavior, use the prefix argument (e.g., C-u M-x powerthesaurus-lookup-dwim).
For quick access to specific query types, use these commands:
powerthesaurus-lookup-synonyms-dwim
powerthesaurus-lookup-antonyms-dwim
powerthesaurus-lookup-related-dwim
powerthesaurus-lookup-definitions-dwim
powerthesaurus-lookup-sentences-dwim
For non-interactive use, call the powerthesaurus-lookup function.
Additionally, it defines transient
and hydra interfaces
The previous API (prior to version 0.2) is still available but not recommended. It consists of three interactive functions:
powerthesaurus-lookup-word
powerthesaurus-lookup-word-at-point
powerthesaurus-lookup-word-dwim
- Include additional information with definition and example sentences.
- Annotate suggestions with part of speech and tags.
- Add
transient
andhydra
interfaces. - Speed up consecutive requests (it's ~4x times faster with
url-retrieve
). - Add rating visualization
- Migrate from parsing HTML of the page to the use of the API.
- Remove redundant headers in request messages to server that potentially cause failure to parse received candidates (Github issue #16).
- Fix regression involving result sorting during selection.
- Fix minor bugs.
- Revamp the package's overall architecture.
- Extend mechanism allowing different types of queries, namely synonyms, antonyms, related terms, definitions, and sentences.
- Support queries involving terms that consist of multiple words (e.g., "give up").
- Fix Github issues #13, #14, #15 and #17.
I want to give a huge shoutout to the creators of powerthesaurus.org for creating such an amazing tool.
Also, kudos to the authors of alfred-powerthesaurus who figured out internal APIs and whose work I shamelessly copied.