spacemacs/layers/+tools/pandoc/packages.el
justbur 6eab954afe Use + instead of ! for layer categories
Helm seems to treat "!" specially in pattern matching, so having a ! in
the pattern string when traversing directories is problematic. This
change fixes #2737, because as far as I can tell "+" has no special
meaning in a helm pattern.

Of course, we can choose a different character, but I'm fond of "+" as
representing "more layers here".
2015-09-11 00:13:51 -04:00

40 lines
1,000 B
EmacsLisp

;;; packages.el --- pandoc Layer packages File for Spacemacs
;;
;; Copyright (c) 2012-2014 Sylvain Benner
;; Copyright (c) 2015 Christoph Paulik & Contributors
;;
;; Author: Christoph Paulik <cpaulik@gmail.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(setq pandoc-packages
'(pandoc-mode
ox-pandoc
))
(defun pandoc/init-pandoc-mode ()
"Initialize my package"
(use-package pandoc-mode
:defer t
:commands spacemacs/run-pandoc
:config
(progn
(defun spacemacs/run-pandoc ()
"Start pandoc for the buffer and open the menu"
(interactive)
(pandoc-mode)
(pandoc-main-hydra/body))
(add-hook 'pandoc-mode-hook 'pandoc-load-default-settings))
:init
(progn
(evil-leader/set-key "P/" 'spacemacs/run-pandoc))))
(defun pandoc/init-ox-pandoc ()
(use-package ox-pandoc
:defer t
:init
(eval-after-load 'org '(require 'ox-pandoc))))