From f14c2d3fe50de3c55e7c9684e93cdf5608a00b89 Mon Sep 17 00:00:00 2001 From: Christian Cunningham Date: Tue, 28 May 2024 11:19:22 -0700 Subject: Initial Commit --- nemacs-functions.el | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 nemacs-functions.el (limited to 'nemacs-functions.el') diff --git a/nemacs-functions.el b/nemacs-functions.el new file mode 100644 index 0000000..5513fae --- /dev/null +++ b/nemacs-functions.el @@ -0,0 +1,10 @@ +(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