From ca3d447bfd849b54f8f9d74568f3dee1e86c391e Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Mon, 29 Jun 2026 04:41:40 -0400 Subject: refactor: split custom-misc.el into focused modules custom-misc.el was an incoherent grab-bag, so anything small defaulted to landing there. I split its eight commands by concern. Three moved into new modules: custom-format (region/buffer reformat), custom-counts (word and character counts), and custom-text-transform (fraction glyphs). The other three went to existing homes: the previous-buffer toggle to custom-buffer-file, the delimiter jump to custom-line-paragraph, and the align-regexp space advice with its alignment and fill bindings to custom-whitespace. The C-; bindings, which-key labels, and the six test files moved with their functions, and custom-misc.el is deleted. No behavior change: every command keeps its name and its C-; key. --- init.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'init.el') diff --git a/init.el b/init.el index 6cdb06c99..919da1af0 100644 --- a/init.el +++ b/init.el @@ -36,7 +36,9 @@ (require 'custom-datetime) ;; date/timestamp insertion in various formats (require 'custom-buffer-file) ;; custom buffer and file operations and keymap (require 'custom-line-paragraph) ;; operations on lines and paragraphs -(require 'custom-misc) ;; miscellaneous functions +(require 'custom-counts) ;; word and character counts +(require 'custom-format) ;; region/buffer reformatting +(require 'custom-text-transform) ;; fraction-glyph text transforms (require 'custom-ordering) ;; ordering and sorting operations (require 'custom-text-enclose) ;; operations to append, prepend, and surround text (require 'custom-whitespace) ;; whitespace operations -- cgit v1.2.3