diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2014-12-07 01:30:40 +0000 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2014-12-08 12:36:52 +0000 |
commit | 512cfda1f0ba120f6fcfe62496936bba1ca42ebc (patch) | |
tree | 9e9978f9e18ea145cdfe14672c7b3e63a3186f3b | |
parent | c6cb8dc93ce2913d24772f642007e02f21a00b80 (diff) |
Create sx-load file whose sole purpose is to load everything.
-rw-r--r-- | README.org | 3 | ||||
-rw-r--r-- | sx-load.el | 51 |
2 files changed, 52 insertions, 2 deletions
@@ -36,8 +36,7 @@ As always, =C-h m= is the definitive resource for the functions of this mode. To install the development version, follow the usual steps: - Clone this repository - Add this directory to your ~load-path~ -- Issue ~(require 'sx)~ -- Issue ~(require 'sx-tab)~ +- Issue ~(require 'sx-load)~ This should give you access to the ~sx-tab-~ functions (the main entry points at this time). diff --git a/sx-load.el b/sx-load.el new file mode 100644 index 0000000..e29d439 --- /dev/null +++ b/sx-load.el @@ -0,0 +1,51 @@ +;;; sx-load.el --- Load all files of the sx package. + +;; Copyright (C) 2014 Artur Malabarba + +;; Author: Artur Malabarba <bruce.connor.am@gmail.com> + +;; This program is free software; you can redistribute it and/or modify +;; it under the terms of the GNU General Public License as published by +;; the Free Software Foundation, either version 3 of the License, or +;; (at your option) any later version. + +;; This program is distributed in the hope that it will be useful, +;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;; GNU General Public License for more details. + +;; You should have received a copy of the GNU General Public License +;; along with this program. If not, see <http://www.gnu.org/licenses/>. + +;;; Commentary: + +;;; Code: +(mapc #'require + '(sx + sx-time + sx-auth + sx-button + sx-cache + sx-compose + sx-encoding + sx-favorites + sx-filter + sx-interaction + sx-method + sx-networks + sx.org + sx-question + sx-question-list + sx-question-mode + sx-question-print + sx-request + sx-site + sx-tab + )) + +(provide 'sx-load) +;;; sx-load.el ends here + +;; Local Variables: +;; indent-tabs-mode: nil +;; End: |