Elisp: Grep in Clojure Project
Join the DZone community and get the full member experience.
Join For Free Grep'ing within my current project is something I do frequently. It's
not much to type, but I do it often enough that I was looking for a
keystroke. Most of my projects are Clojure and use Leiningen, thus I'm
able to make some pretty safe assumptions. The following snippets allow
you to easily grep within your project.
note: both use expand-region to grab the clojure that the cursor is on or immediately after, and grep for whatever was selected.
grep recursively starting at the directory where the project.clj file lives
(defun grep-in-project () (interactive) (er/mark-clj-word) (let* ((project-root (locate-dominating-file (file-name-directory (buffer-file-name)) "project.clj"))) (if project-root (grep (concat "grep -nH -e " (buffer-substring-no-properties (region-beginning) (region-end)) " -R " project-root)) (message (concat "no project.clj found at or below " (buffer-file-name)))))) (global-set-key (kbd "C-c g") 'grep-in-project)grep recursively, but allow the user to select the root directory (defaulting to the location of the project.clj file). I often use this one for selecting only the src or test directories of my project.
(defun grep-in (project-root) (interactive (list (read-directory-name "Project Root: " (locate-dominating-file default-directory "project.clj")))) (er/mark-clj-word) (grep (concat "grep -nH -e " (buffer-substring-no-properties (region-beginning) (region-end)) " -R " project-root))) (global-set-key (kbd "C-c C-g") 'grep-in)
Published at DZone with permission of Jay Fields, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Trending
-
Unlocking the Power of AIOps: Enhancing DevOps With Intelligent Automation for Optimized IT Operations
-
Is TestOps the Future of Software Testing?
-
Postgres JSON Functions With Hibernate 5
-
Java String Templates Today
Comments