Files
.emacs.d/modules/text-editing/siren-toggle-comments.el
Jim Myhrberg fe6a4e7ce5 fix(elisp): add lexical-binding comment to all files to suppress new Emacs 31 warnings
I've set `lexical-binding` to `nil` in all Emacs Lisp files to suppress
the warnings introduced in Emacs 31 requiring all elisp files to have a
`lexical-binding` comment.

This retains the default behavior of dynamic binding when no
`lexical-binding` comment is present. With it set to `t` across the
board, various things break, and fixing those is a task for another day.
2025-06-29 12:23:03 +01:00

29 lines
917 B
EmacsLisp

;;; siren-toggle-comments.el --- jimeh's Emacs Siren: toggle-comments -*- lexical-binding: nil; -*-
;;; Commentary:
;; Allows to toggle comments for current line or selected region.
;;; Code:
(use-package newcomment
:straight (:type built-in)
:general
("s-/" 'comment-or-uncomment-region-or-line)
("C-c /" 'comment-or-uncomment-region-or-line)
("C-c C-/" 'comment-or-uncomment-region-or-line)
("C-c C-_" 'comment-or-uncomment-region-or-line)
:preface
(defun comment-or-uncomment-region-or-line (&optional beg end arg)
"Comments or uncomments the region or current line."
(interactive "P")
(if (region-active-p)
(comment-or-uncomment-region (region-beginning) (region-end) arg)
(comment-or-uncomment-region (line-beginning-position)
(line-end-position) arg))))
(provide 'siren-toggle-comments)
;;; siren-toggle-comments.el ends here