From 5c1b2a5da3c11f8b2d946219b2afeac526e6627d Mon Sep 17 00:00:00 2001 From: Christian Cunningham Date: Sat, 1 Jun 2024 16:11:59 -0700 Subject: Rename Config --- nemacs-functions.el | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 nemacs-functions.el (limited to 'nemacs-functions.el') diff --git a/nemacs-functions.el b/nemacs-functions.el deleted file mode 100644 index 5513fae..0000000 --- a/nemacs-functions.el +++ /dev/null @@ -1,10 +0,0 @@ -(defun nemacs/replace-in-buffer () - (interactive) - (save-excursion - (if (equal mark-active nil) (mark-word)) - (setq nm/rib/current-word (buffer-substring-no-properties (mark) (point))) - (setq nm/rib/old-string (read-string "OLD string:\n" nm/rib/current-word)) - (setq nm/rib/new-string (read-string "NEW string:\n" nm/rib/old-string)) - (query-replace nm/rib/old-string nm/rib/new-string nil (point-min) (point-max)))) - -(provide 'nemacs-functions) -- cgit v1.2.1