Variable: modula2-other-file-alist
modula2-other-file-alist is a customizable variable defined in
find-file.el.gz.
Value
(("\\.mi\\'" (".md")) ("\\.md\\'" (".mi")))
Documentation
See the description for the ff-search-directories variable.
Source Code
;; Defined in /usr/src/emacs/lisp/find-file.el.gz
(defcustom modula2-other-file-alist
'(
("\\.mi\\'" (".md")) ;; Modula-2 module definition
("\\.md\\'" (".mi")) ;; and implementation.
)
"See the description for the `ff-search-directories' variable."
:type '(repeat (list regexp (choice (repeat string) function))))