spacemacs/layers/+config-files/ansible/funcs.el

25 lines
752 B
EmacsLisp
Raw Normal View History

2015-02-17 20:11:06 +00:00
;;; funcs.el --- Ansible Layer extensions File for Spacemacs
;;
;; Copyright (c) 2012-2014 Sylvain Benner
;; Copyright (c) 2015 Brian Hicks & Contributors
;;
;; Author: Brian Hicks <brian@brianthicks.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(defun ansible/ansible-should-enable? ()
(and (stringp buffer-file-name)
(string-match ansible/ansible-filename-re buffer-file-name)))
(defun ansible/ansible-maybe-enable ()
(when (ansible/ansible-should-enable?)
(ansible 1)))
(defun ansible/ansible-doc-maybe-enable ()
(when (ansible/ansible-should-enable?)
(ansible-doc-mode 1)
(spacemacs/set-leader-keys-for-major-mode 'yaml-mode
"a?" 'ansible-doc)))