spacemacs/layers/+tags/gtags/packages.el
2016-08-26 15:14:34 +02:00

57 lines
2.2 KiB
EmacsLisp

;;; packages.el --- gtags Layer packages File for Spacemacs
;;
;; Copyright (c) 2012-2016 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 :toggle (configuration-layer/package-usedp '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))))