diff options
author | Tristan Riehs <tristan.riehs@bordeaux-inp.fr> | 2024-03-19 09:06:15 +0100 |
---|---|---|
committer | Tristan Riehs <tristan.riehs@bordeaux-inp.fr> | 2024-03-19 09:06:15 +0100 |
commit | 71d438ad345f85847ab1b77c9cc99133963da47f (patch) | |
tree | 035f2b8f9d4c810569604abe0697fa8caf7d206e | |
parent | 62c38c33d6ce25d4bc21588ee7bbd985dc657084 (diff) |
Define the core custom variable
-rw-r--r-- | edit-config.el | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/edit-config.el b/edit-config.el index 6242f4e..660238a 100644 --- a/edit-config.el +++ b/edit-config.el @@ -30,5 +30,12 @@ :group 'emacs :prefix "edit-config") +(defcustom edit-config-files nil + "The list of config files. + +Each element of this list has the form (LABEL . FILENAME). LABEL is what +is displayed in the prompt of `edit-config', and FILENAME is the actual +configuration file.") + (provide 'edit-config) ;;; edit-config.el ends here |