spacemacs/layers/+config-files/ansible/funcs.el
syl20bnr 33ead6fc42 Deprecation of extensions and <pkg>-excluded-packages variables
As announced in previous releases, see CHANGELOG.next for more info
in the Breaking Changes section.
2016-01-17 22:06:04 -05:00

20 lines
627 B
EmacsLisp

;;; funcs.el --- Ansible Layer functions File for Spacemacs
;;
;; Copyright (c) 2012-2016 Sylvain Benner & 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)))