From 5c1b2a5da3c11f8b2d946219b2afeac526e6627d Mon Sep 17 00:00:00 2001 From: Christian Cunningham Date: Sat, 1 Jun 2024 16:11:59 -0700 Subject: Rename Config --- elchemy-functions.el | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 elchemy-functions.el (limited to 'elchemy-functions.el') diff --git a/elchemy-functions.el b/elchemy-functions.el new file mode 100644 index 0000000..296e1e9 --- /dev/null +++ b/elchemy-functions.el @@ -0,0 +1,10 @@ +(defun elchemy/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 'elchemy-functions) -- cgit v1.2.1