17 lines
477 B
EmacsLisp
17 lines
477 B
EmacsLisp
|
;;; packages-funcs.el --- Elixir Layer packages functions File for Spacemacs
|
||
|
;;
|
||
|
;; Copyright (c) 2012-2016 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
|
||
|
|
||
|
(defun spacemacs//elixir-do-end-close-action (id action context)
|
||
|
(when (eq action 'insert)
|
||
|
(newline-and-indent)
|
||
|
(forward-line -1)
|
||
|
(indent-according-to-mode)))
|