You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

22 lines
655 B

;;; 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)))