diff options
Diffstat (limited to 'dictionary-init.el')
-rw-r--r-- | dictionary-init.el | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/dictionary-init.el b/dictionary-init.el new file mode 100644 index 0000000..5f21a39 --- /dev/null +++ b/dictionary-init.el @@ -0,0 +1,9 @@ +(autoload 'dictionary-search "dictionary" + "Ask for a word and search it in all dictionaries" t) +(autoload 'dictionary-match-words "dictionary" + "Ask for a word and search all matching words in the dictionaries" t) +(autoload 'dictionary-lookup-definition "dictionary" + "Unconditionally lookup the word at point." t) +(autoload 'dictionary "dictionary" + "Create a new dictionary buffer" t) + |