aboutsummaryrefslogtreecommitdiff
path: root/Emacs/.config/emacs/elisp/search.el
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2025-06-08 14:06:10 +0100
committerAryadev Chavali <aryadev@aryadevchavali.com>2025-06-08 14:06:10 +0100
commit64808681e314a2c482b47269c9bae529ccfb17fb (patch)
tree1707d3f049b56a6da0ec87b36bd33ee6933bf8f0 /Emacs/.config/emacs/elisp/search.el
parent4f025811bcfe92acf92e64c5aa1d89524278edc6 (diff)
downloaddotfiles-64808681e314a2c482b47269c9bae529ccfb17fb.tar.gz
dotfiles-64808681e314a2c482b47269c9bae529ccfb17fb.tar.bz2
dotfiles-64808681e314a2c482b47269c9bae529ccfb17fb.zip
Emacs changes... lots of them
Diffstat (limited to 'Emacs/.config/emacs/elisp/search.el')
-rw-r--r--Emacs/.config/emacs/elisp/search.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/Emacs/.config/emacs/elisp/search.el b/Emacs/.config/emacs/elisp/search.el
index 7522d6f..eccc050 100644
--- a/Emacs/.config/emacs/elisp/search.el
+++ b/Emacs/.config/emacs/elisp/search.el
@@ -53,7 +53,7 @@ Returns a list of files with the directory preprended to them."
(thread-last (+search/get-all-candidates)
(cl-remove-if #'directory-name-p)
(mapcar #'(lambda (x) (concat "\"" x "\" ")))
- (string-join)))
+ string-join))
(defun +search/search-all ()
(interactive)
@@ -61,7 +61,7 @@ Returns a list of files with the directory preprended to them."
(candidates (+search/-format-grep-candidates)))
(thread-last candidates
(format "grep --color=auto -nIHZe \"%s\" -- %s" term)
- (grep))
+ grep)
(next-error)))
(provide 'search)