Emacs: Delete Text Block 🚀
Here's a convenient command to delete/kill current text block (aka paragraph).
Call it again to delete next one, or hold a key to keep deleting.
Be sure to give it a key. 〔see Emacs Keys: Define Key〕
put this in your Emacs Init File:
(defun xah-delete-current-text-block () "Delete the current text block plus blank lines, or selection, and copy to `kill-ring'. If cursor is between blank lines, delete following blank lines. URL `http://xahlee.info/emacs/emacs/emacs_delete_block.html' Created: 2017-07-09 Version: 2023-10-09" (interactive) (let (xp1 xp2) (if (region-active-p) (setq xp1 (region-beginning) xp2 (region-end)) (progn (if (re-search-backward "\n[ \t]*\n+" nil :move) (setq xp1 (goto-char (match-end 0))) (setq xp1 (point))) (if (re-search-forward "\n[ \t]*\n+" nil :move) (setq xp2 (match-end 0)) (setq xp2 (point-max))))) (kill-region xp1 xp2)))