spacemacs/layers/+lang/markdown/packages.el

246 lines
9.9 KiB
EmacsLisp
Raw Normal View History

;;; packages.el --- Markdown Layer packages File for Spacemacs
;;
;; Copyright (c) 2012-2017 Sylvain Benner & Contributors
;;
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(setq markdown-packages
'(
company
company-emoji
emoji-cheat-sheet-plus
gh-md
markdown-mode
markdown-toc
mmm-mode
smartparens
(vmd-mode :toggle (eq 'vmd markdown-live-preview-engine))
))
(defun markdown/post-init-company ()
Refactor and simplify company backends declaration Enabling a company backend for a specific mode was a tedious tasks with code scattered at different locations, one for local variable definitions, one for company hook function definitions and another where the backends were pushed to the local variables (which was problematic, since we ended up pushing the same backends over and over again with `SPC f e R`, pushes have been replaced by add-to-list calls in the new macro). All these steps are now put together at one place with the new macro spacemacs|add-company-backends, check its docstring for more info on its arguments. This macro also allows to define arbitrary buffer local variables to tune company for specific modes (similar to layer variables via a keyword :variables) The code related to company backends management has been moved to the auto-completion layer in the funcs.el file. A nice side effect of this move is that it enforces correct encapsulation of company backends related code. We can now easily detect if there is some configuration leakage when the auto-completion layer is not used. But we loose macro expansion at file loading time (not sue it is a big concern though). The function spacemacs|enable-auto-complete was never used so it has been deleted which led to the deletion of the now empty file core-auto-completion.el. The example in LAYERS.org regarding auto-completion is now out of date and has been deleted. An example to setup auto-completion is provided in the README.org file of the auto-completion layer.
2017-01-02 05:39:04 +00:00
(spacemacs|add-company-backends :backends company-capf :modes markdown-mode))
(defun markdown/post-init-company-emoji ()
Refactor and simplify company backends declaration Enabling a company backend for a specific mode was a tedious tasks with code scattered at different locations, one for local variable definitions, one for company hook function definitions and another where the backends were pushed to the local variables (which was problematic, since we ended up pushing the same backends over and over again with `SPC f e R`, pushes have been replaced by add-to-list calls in the new macro). All these steps are now put together at one place with the new macro spacemacs|add-company-backends, check its docstring for more info on its arguments. This macro also allows to define arbitrary buffer local variables to tune company for specific modes (similar to layer variables via a keyword :variables) The code related to company backends management has been moved to the auto-completion layer in the funcs.el file. A nice side effect of this move is that it enforces correct encapsulation of company backends related code. We can now easily detect if there is some configuration leakage when the auto-completion layer is not used. But we loose macro expansion at file loading time (not sue it is a big concern though). The function spacemacs|enable-auto-complete was never used so it has been deleted which led to the deletion of the now empty file core-auto-completion.el. The example in LAYERS.org regarding auto-completion is now out of date and has been deleted. An example to setup auto-completion is provided in the README.org file of the auto-completion layer.
2017-01-02 05:39:04 +00:00
(spacemacs|add-company-backends
:backends company-emoji
:modes markdown-mode))
(defun markdown/post-init-emoji-cheat-sheet-plus ()
(add-hook 'markdown-mode-hook 'emoji-cheat-sheet-plus-display-mode))
(defun markdown/init-gh-md ()
(use-package gh-md
:defer t
:init
(spacemacs/set-leader-keys-for-major-mode 'markdown-mode
"cr" 'gh-md-render-buffer)))
(defun markdown/post-init-smartparens ()
(add-hook 'markdown-mode-hook 'smartparens-mode))
(defun markdown/init-markdown-mode ()
(use-package markdown-mode
:mode ("\\.m[k]d" . markdown-mode)
:defer t
:config
(progn
;; stolen from http://stackoverflow.com/a/26297700
;; makes markdown tables saner via orgtbl-mode
(require 'org-table)
(defun cleanup-org-tables ()
(save-excursion
(goto-char (point-min))
(while (search-forward "-+-" nil t) (replace-match "-|-"))))
(add-hook 'markdown-mode-hook 'orgtbl-mode)
(add-hook 'markdown-mode-hook
(lambda()
2017-02-15 09:27:23 +00:00
(add-hook 'before-save-hook 'cleanup-org-tables nil 'make-it-local)))
;; Insert key for org-mode and markdown a la C-h k
;; from SE endless http://emacs.stackexchange.com/questions/2206/i-want-to-have-the-kbd-tags-for-my-blog-written-in-org-mode/2208#2208
(defun spacemacs/insert-keybinding-markdown (key)
"Ask for a key then insert its description.
Will work on both org-mode and any mode that accepts plain html."
(interactive "kType key sequence: ")
2015-06-10 16:44:30 +00:00
(let* ((tag "~%s~"))
(if (null (equal key "\r"))
(insert
(format tag (help-key-description key nil)))
(insert (format tag ""))
(forward-char -6))))
;; Declare prefixes and bind keys
(dolist (prefix '(("mc" . "markdown/command")
("mh" . "markdown/header")
("mi" . "markdown/insert")
("ml" . "markdown/lists")
("mx" . "markdown/text")))
(spacemacs/declare-prefix-for-mode
'markdown-mode (car prefix) (cdr prefix)))
2017-02-13 12:37:13 +00:00
;; note: `gfm-mode' is part of `markdown-mode.el' so we can define its key
;; bindings here
(dolist (mode '(markdown-mode gfm-mode))
(spacemacs/set-leader-keys-for-major-mode mode
;; Movement
"{" 'markdown-backward-paragraph
"}" 'markdown-forward-paragraph
;; Completion, and Cycling
"]" 'markdown-complete
;; Indentation
">" 'markdown-indent-region
"<" 'markdown-exdent-region
;; Buffer-wide commands
"c]" 'markdown-complete-buffer
"cc" 'markdown-check-refs
"ce" 'markdown-export
"cm" 'markdown-other-window
"cn" 'markdown-cleanup-list-numbers
"co" 'markdown-open
"cp" 'markdown-preview
"cv" 'markdown-export-and-preview
"cw" 'markdown-kill-ring-save
;; headings
"hi" 'markdown-insert-header-dwim
"hI" 'markdown-insert-header-setext-dwim
"h1" 'markdown-insert-header-atx-1
"h2" 'markdown-insert-header-atx-2
"h3" 'markdown-insert-header-atx-3
"h4" 'markdown-insert-header-atx-4
"h5" 'markdown-insert-header-atx-5
"h6" 'markdown-insert-header-atx-6
"h!" 'markdown-insert-header-setext-1
"h@" 'markdown-insert-header-setext-2
;; Insertion of common elements
"-" 'markdown-insert-hr
"if" 'markdown-insert-footnote
"ii" 'markdown-insert-image
"ik" 'spacemacs/insert-keybinding-markdown
"iI" 'markdown-insert-reference-image
"il" 'markdown-insert-link
"iL" 'markdown-insert-reference-link-dwim
"iw" 'markdown-insert-wiki-link
"iu" 'markdown-insert-uri
;; Element removal
"k" 'markdown-kill-thing-at-point
;; List editing
"li" 'markdown-insert-list-item
;; region manipulation
"xb" 'markdown-insert-bold
"xi" 'markdown-insert-italic
"xc" 'markdown-insert-code
"xC" 'markdown-insert-gfm-code-block
"xq" 'markdown-insert-blockquote
"xQ" 'markdown-blockquote-region
"xp" 'markdown-insert-pre
"xP" 'markdown-pre-region
;; Following and Jumping
"N" 'markdown-next-link
"f" 'markdown-follow-thing-at-point
"P" 'markdown-previous-link
"<RET>" 'markdown-jump))
(when (eq 'eww markdown-live-preview-engine)
(spacemacs/set-leader-keys-for-major-mode 'markdown-mode
"cP" 'markdown-live-preview-mode))
;; Header navigation in normal state movements
(evil-define-key 'normal markdown-mode-map
"gj" 'outline-forward-same-level
"gk" 'outline-backward-same-level
"gh" 'outline-up-heading
;; next visible heading is not exactly what we want but close enough
"gl" 'outline-next-visible-heading)
;; Promotion, Demotion
(define-key markdown-mode-map (kbd "M-h") 'markdown-promote)
(define-key markdown-mode-map (kbd "M-j") 'markdown-move-down)
(define-key markdown-mode-map (kbd "M-k") 'markdown-move-up)
(define-key markdown-mode-map (kbd "M-l") 'markdown-demote))))
(defun markdown/init-markdown-toc ()
(use-package markdown-toc
:defer t
:init (spacemacs/set-leader-keys-for-major-mode 'markdown-mode
"it" 'markdown-toc-generate-toc)))
(defun markdown/init-mmm-mode ()
(use-package mmm-mode
:commands mmm-mode
:init (add-hook 'markdown-mode-hook 'spacemacs/activate-mmm-mode)
:config
(progn
2016-12-19 15:50:14 +00:00
(spacemacs|hide-lighter mmm-mode)
(mmm-add-classes '((markdown-ini
:submode conf-unix-mode
:face mmm-declaration-submode-face
:front "^```ini[\n\r]+"
:back "^```$")))
(mmm-add-classes '((markdown-python
:submode python-mode
:face mmm-declaration-submode-face
:front "^```python[\n\r]+"
:back "^```$")))
(mmm-add-classes '((markdown-html
:submode web-mode
:face mmm-declaration-submode-face
:front "^```html[\n\r]+"
:back "^```$")))
(mmm-add-classes '((markdown-java
:submode java-mode
:face mmm-declaration-submode-face
:front "^```java[\n\r]+"
:back "^```$")))
(mmm-add-classes '((markdown-ruby
:submode ruby-mode
:face mmm-declaration-submode-face
:front "^```ruby[\n\r]+"
:back "^```$")))
(mmm-add-classes '((markdown-c
:submode c-mode
:face mmm-declaration-submode-face
:front "^```c[\n\r]+"
:back "^```$")))
(mmm-add-classes '((markdown-c++
:submode c++-mode
:face mmm-declaration-submode-face
:front "^```c\+\+[\n\r]+"
:back "^```$")))
(mmm-add-classes '((markdown-elisp
:submode emacs-lisp-mode
:face mmm-declaration-submode-face
:front "^```elisp[\n\r]+"
:back "^```$")))
(mmm-add-classes '((markdown-javascript
:submode javascript-mode
:face mmm-declaration-submode-face
:front "^```javascript[\n\r]+"
:back "^```$")))
(mmm-add-classes '((markdown-ess
:submode R-mode
:face mmm-declaration-submode-face
:front "^```{?r.*}?[\n\r]+"
:back "^```$")))
2016-02-19 00:15:25 +00:00
(mmm-add-classes '((markdown-rust
:submode rust-mode
:face mmm-declaration-submode-face
:front "^```rust[\n\r]+"
:back "^```$")))
(mmm-add-mode-ext-class 'markdown-mode nil 'markdown-python)
(mmm-add-mode-ext-class 'markdown-mode nil 'markdown-java)
(mmm-add-mode-ext-class 'markdown-mode nil 'markdown-ruby)
(mmm-add-mode-ext-class 'markdown-mode nil 'markdown-c)
(mmm-add-mode-ext-class 'markdown-mode nil 'markdown-c++)
(mmm-add-mode-ext-class 'markdown-mode nil 'markdown-elisp)
(mmm-add-mode-ext-class 'markdown-mode nil 'markdown-html)
(mmm-add-mode-ext-class 'markdown-mode nil 'markdown-javascript)
2016-02-19 00:15:25 +00:00
(mmm-add-mode-ext-class 'markdown-mode nil 'markdown-ess)
(mmm-add-mode-ext-class 'markdown-mode nil 'markdown-rust)
(mmm-add-mode-ext-class 'markdown-mode nil 'markdown-ini))))
2016-06-01 05:53:06 +00:00
(defun markdown/init-vmd-mode ()
(use-package vmd-mode
:defer t
:init (spacemacs/set-leader-keys-for-major-mode 'markdown-mode
"cP" 'vmd-mode)))