spacemacs/layers/+tags/gtags/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

57 lines
2.2 KiB
EmacsLisp

;;; packages.el --- gtags Layer packages File for Spacemacs
;;
;; Copyright (c) 2012-2017 Sylvain Benner & Contributors
;;
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
;; and: Christian E. Hopps <chopps@gmail.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(defconst gtags-packages
'(
ggtags
(helm-gtags :depends helm)
))
(defun gtags/init-ggtags ()
(use-package ggtags
:defer t
:init
(progn
;; modes that do not have a layer, add here.
(add-hook 'awk-mode-local-vars-hook #'spacemacs/ggtags-mode-enable)
(add-hook 'shell-mode-local-vars-hook #'spacemacs/ggtags-mode-enable)
(add-hook 'tcl-mode-local-vars-hook #'spacemacs/ggtags-mode-enable)
(add-hook 'vhdl-mode-local-vars-hook #'spacemacs/ggtags-mode-enable))
:config
(when (configuration-layer/package-usedp 'helm-gtags)
;; If anyone uses helm-gtags, they would want to use these key bindings.
;; These are bound in `ggtags-mode-map', since the functionality of
;; `helm-gtags-mode' is basically entirely contained within
;; `ggtags-mode-map' --- this way we don't have to enable both.
;; Note: all of these functions are autoloadable.
(define-key ggtags-mode-map (kbd "M-.") 'helm-gtags-dwim)
(define-key ggtags-mode-map (kbd "C-x 4 .") 'helm-gtags-find-tag-other-window)
(define-key ggtags-mode-map (kbd "M-,") 'helm-gtags-pop-stack)
(define-key ggtags-mode-map (kbd "M-*") 'helm-gtags-pop-stack))))
(defun gtags/init-helm-gtags ()
(use-package helm-gtags
:defer t
:init
(progn
(setq helm-gtags-ignore-case t
helm-gtags-auto-update t
helm-gtags-use-input-at-cursor t
helm-gtags-pulse-at-cursor t)
;; modes that do not have a layer, define here
(spacemacs/helm-gtags-define-keys-for-mode 'tcl-mode)
(spacemacs/helm-gtags-define-keys-for-mode 'vhdl-mode)
(spacemacs/helm-gtags-define-keys-for-mode 'awk-mode)
(spacemacs/helm-gtags-define-keys-for-mode 'dired-mode)
(spacemacs/helm-gtags-define-keys-for-mode 'compilation-mode)
(spacemacs/helm-gtags-define-keys-for-mode 'shell-mode))))