Variable: erc-spelling-dictionaries

erc-spelling-dictionaries is a customizable variable defined in erc-spelling.el.gz.

Value

nil

Documentation

An alist mapping buffer names to dictionaries.

Each element is a list of the form (KEY VALUE), where KEY is a buffer name and VALUE a locale or dictionary name known to ispell, for example: (("Libera.Chat" "en_US") ("#esperanto" "esperanto")).

The dictionary is inherited from server buffers, so if you want a default dictionary for some server, you can use a server buffer name here.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-spelling.el.gz
(defcustom erc-spelling-dictionaries nil
  "An alist mapping buffer names to dictionaries.

Each element is a list of the form (KEY VALUE), where KEY is a buffer
name and VALUE a locale or dictionary name known to `ispell', for
example: ((\"Libera.Chat\" \"en_US\") (\"#esperanto\" \"esperanto\")).

The dictionary is inherited from server buffers, so if you want a
default dictionary for some server, you can use a server buffer
name here."
  :type '(choice (const nil)
                 (repeat (list (string :tag "Buffer name")
                               (string :tag "Dictionary")))))