spacemacs/layers/+tools/rebox/funcs.el
2016-10-17 13:35:39 +02:00

23 lines
655 B
EmacsLisp

;;; packages.el --- rebox layer function file for Spacemacs.
;;
;; Copyright (c) 2012-2016 Sylvain Benner & Contributors
;;
;; Author: Christian E. Hopps <chopps@gmail.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(defun rebox-enable-hook ()
"Until rebox is fixed for C style comments we have to disable"
(and (not (or (eq major-mode 'c-mode)
(eq major-mode 'c++-mode)
(eq major-mode 'objc-mode)))
(rebox-mode)))
(defun spacemacs/rebox-dwim-previous ()
"Cycle to previous style in `rebox-style-loop'."
(interactive)
(rebox-dwim '(4)))