spacemacs/layers/+tools/restclient/packages.el
Eivind Fonn 08561d8631 core: implement :depends for package declarations
This replaces the older pattern
:toggle (configuration-layer/package-usedp ..)

This implementation ensures that :disabled-for honors dependent packages, i.e.
if package a depends on package b, which is owned by layer c, and layer c is
disabled for layer d, then neither package a nor b will be configured for layer
d. Previously, this was only true for package a, but not b.

This commit also fixes:

- configuration-layer/describe-package now shows which post-init and pre-init
  functions are disabled, if any
- Does not recreate all layer objects unconditionally when calling
  configuration-layer/discover-layers. Previously, this led to all layers being
  recreated after e.g. `SPC h SPC`, without any of the dotfile information.
  Since this information is now necessary for
  configuration-layer/describe-package, it’s important that we don’t clear the
  indexed layers when invoking this function.
2017-06-22 11:53:05 +02:00

66 lines
2.1 KiB
EmacsLisp

;;; packages.el --- restclient Layer Packages File
;;
;; Copyright (c) 2012-2017 Sylvain Benner & Contributors
;;
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(setq restclient-packages
'(
(company-restclient :depends company)
golden-ratio
ob-http
ob-restclient
restclient
(restclient-helm :depends helm)
))
(defun restclient/pre-init-golden-ratio ()
(spacemacs|use-package-add-hook golden-ratio
:post-config (add-to-list 'golden-ratio-exclude-modes "restclient-mode")))
(defun restclient/init-ob-http ()
(when restclient-use-org
(add-to-list 'auto-mode-alist '("\\.http\\'" . org-mode)))
(spacemacs|use-package-add-hook org
:post-config
(use-package ob-http
:init (add-to-list 'org-babel-load-languages '(http . t)))))
(defun restclient/init-ob-restclient ()
(spacemacs|use-package-add-hook org
:post-config
(use-package ob-restclient
:init (add-to-list 'org-babel-load-languages '(restclient . t)))))
(defun restclient/init-restclient ()
(use-package restclient
:defer t
:init
(progn
(unless restclient-use-org
(add-to-list 'auto-mode-alist '("\\.http\\'" . restclient-mode)))
(spacemacs/set-leader-keys-for-major-mode 'restclient-mode
"n" 'restclient-jump-next
"p" 'restclient-jump-prev
"s" 'restclient-http-send-current-stay-in-window
"S" 'restclient-http-send-current
"r" 'spacemacs/restclient-http-send-current-raw-stay-in-window
"R" 'restclient-http-send-current-raw
"y" 'restclient-copy-curl-command))))
(defun restclient/init-company-restclient ()
(use-package company-restclient
:defer t
:init (spacemacs|add-company-backends
:backends company-restclient
:modes restclient-mode)))
(defun restclient/init-restclient-helm ()
(use-package restclient-helm
:init (spacemacs/set-leader-keys-for-major-mode 'restclient-mode
"ji" 'helm-restclient)))