connection process. Defaults to "dict".
- User Option: dict-process-buffer-name :: Name of the buffer to use for the
dictionary server connection process output. Defaults to "*​dict output*".
- #+FINDEX: dict-display-definition-in-help-buffer
- User Option: dict-display-definition-function :: Function to use for
displaying word definitions. The function must take two string arguments, the
word and its definition, and display the definition to the user. Defaults to
history". This is also what ~dict-describe-word~ uses to prompt for a
word when you call it interactively.
+* Example Configuration
+:PROPERTIES:
+:CUSTOM_ID: example-config
+:DESCRIPTION: Example Dict configuration
+:ALT_TITLE: Example Config
+:END:
+
+Here's an example configuration for Dict:
+
+#+begin_src emacs-lisp
+ (with-eval-after-load 'dict
+ ;; some settings
+ (setq dict-server-host "dict.org"
+ dict-dictionary "gcide"
+ dict-strategy "prefix"))
+
+ (keymap-global-set "M-#" #'dict-describe-word)
+#+end_src
+
+If you install Dict as a package ~dict-describe-word~ is autoloaded on
+demand, so there's no need for to ~require~ anything before you use it.
+
* Motivation Behind Dict
:PROPERTIES:
:CUSTOM_ID: motivation