diff options
Diffstat (limited to 'emacs/.emacs.d/wpc/functions.el')
-rw-r--r-- | emacs/.emacs.d/wpc/functions.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/.emacs.d/wpc/functions.el b/emacs/.emacs.d/wpc/functions.el index d9f1a1e96017..24f2516be455 100644 --- a/emacs/.emacs.d/wpc/functions.el +++ b/emacs/.emacs.d/wpc/functions.el @@ -111,7 +111,7 @@ (defun wpc/evil-replace-under-point () "Faster than typing %s//thing/g." (interactive) - (let ((term (s-replace "/" "\\/" (symbol/to-string (symbol-at-point))))) + (let ((term (s-replace "/" "\\/" (symbol-to-string (symbol-at-point))))) (save-excursion (evil-ex (concat "%s/\\b" term "\\b/"))))) |