diff options
| author | Craig Jennings <c@cjennings.net> | 2025-10-18 11:38:29 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2025-10-18 11:38:29 -0500 |
| commit | 1feb57badac2e9230e61591df4da333ae7324cc3 (patch) | |
| tree | fcca68452d1cae20aa05db755e4942cc935a3ff1 /modules/custom-comments.el | |
| parent | da3a0d3a08cff505e4446f0ed1edd16695e03742 (diff) | |
| download | dotemacs-1feb57badac2e9230e61591df4da333ae7324cc3.tar.gz dotemacs-1feb57badac2e9230e61591df4da333ae7324cc3.zip | |
doc: custom-comments: improved commentary
Diffstat (limited to 'modules/custom-comments.el')
| -rw-r--r-- | modules/custom-comments.el | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/modules/custom-comments.el b/modules/custom-comments.el index b7052c660..267c4412d 100644 --- a/modules/custom-comments.el +++ b/modules/custom-comments.el @@ -1,8 +1,19 @@ ;;; custom-comments.el --- Custom Comment Operations -*- coding: utf-8; lexical-binding: t; -*- - +;; ;;; Commentary: +;; This module provides custom comment formatting and manipulation utilities for code editing. +;; +;; Functions include: +;; - deleting all comments in a buffer, +;; - reformatting commented text into single-line paragraphs, +;; - creating centered comment headers with customizable separator characters, +;; - creating comment boxes around text +;; - inserting hyphen-style centered comments. +;; +;; These utilities help create consistent, well-formatted code comments and section headers. +;; Bound to keymap prefix: C-; C +;; ;; - ;;; Code: (eval-when-compile (require 'keybindings)) ;; for keymapping below |
