diff --git a/core/prelude-core.el b/core/prelude-core.el index 7a9a144..f1a0cec 100644 --- a/core/prelude-core.el +++ b/core/prelude-core.el @@ -158,23 +158,6 @@ point reaches the beginning or end of the buffer, stop there." (global-set-key [remap move-beginning-of-line] 'prelude-move-beginning-of-line) -(defun prelude-indent-buffer () - "Indent the currently visited buffer." - (interactive) - (indent-region (point-min) (point-max))) - -(defun prelude-indent-buffer-or-region () - "Indent a region if selected, otherwise the whole buffer." - (interactive) - (save-excursion - (if (region-active-p) - (progn - (indent-region (region-beginning) (region-end)) - (message "Indented selected region.")) - (progn - (prelude-indent-buffer) - (message "Indented buffer."))))) - (defun prelude-indent-defun () "Indent the current defun." (interactive) @@ -286,43 +269,11 @@ there's a region, all lines that region covers will be duplicated." (cond ((search-forward "