From 1849204a57a9ef967161370990a26b1d11a86dc2 Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Sun, 22 Oct 2023 05:46:27 +0200 Subject: [PATCH] Remove the delete-current-line function MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I don’t use it. --- configuration.org | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/configuration.org b/configuration.org index cf2ca6c..30add6d 100644 --- a/configuration.org +++ b/configuration.org @@ -341,17 +341,6 @@ We need to do things differently, if so. ** Misc text manipulation functions -*** Delete the current line - -#+BEGIN_SRC emacs-lisp -(defun gpolonkai/delete-current-line () - "Kill the whole line on which point is." - (interactive) - - (beginning-of-line) - (kill-line 1)) -#+END_SRC - *** Toggle case of character at point Based on [[http://ergoemacs.org/emacs/modernization_upcase-word.html][Xah’s toggle letter case defun version 2015-12-22]]