Skip to content

Commit 77670a4

Browse files
kidddajva
authored andcommitted
add rg-dwim-current-file to narrow rg-dwim even more.
Following the trend of c-u meaning "more focused", this commit implements c-u c-u rg-dwim as even narrower search, searching just in the current file.
1 parent f09df88 commit 77670a4

File tree

2 files changed

+27
-9
lines changed

2 files changed

+27
-9
lines changed

rg.el

+23-7
Original file line numberDiff line numberDiff line change
@@ -707,17 +707,33 @@ under the current directory."
707707
:files current
708708
:dir current)
709709

710+
;;;###autoload (autoload 'rg-dwim-current-file "rg.el" "" t)
711+
(rg-define-search rg-dwim-current-file
712+
"Search for thing at point in files matching the current file
713+
name (as a pattern) under the current directory."
714+
:query point
715+
:format literal
716+
:files (file-name-nondirectory (buffer-file-name))
717+
:dir current)
718+
710719
;;;###autoload
711720
(defun rg-dwim (&optional curdir)
712721
"Run ripgrep without user interaction figuring out the intention by magic(!).
713-
The default magic searches for thing at
714-
point in files matching current file under project root
715-
directory. With \\[universal-argument] prefix (CURDIR), search is
716-
done in current dir instead of project root."
722+
The default magic searches for thing at point in files matching
723+
current file under project root directory.
724+
725+
With \\[universal-argument] prefix (CURDIR), search is done in
726+
current dir instead of project root.
727+
728+
With repeated \\[universal-argument] prefix, search is done in
729+
the current dir and using the current variable `buffer-file-name'
730+
as a pattern. Subdirectories are still searched, so different
731+
files with the same name pattern still will be searched."
717732
(interactive "P")
718-
(if curdir
719-
(rg-dwim-current-dir)
720-
(rg-dwim-project-dir)))
733+
(cond
734+
((eq 4 (and (consp curdir) (car curdir))) (rg-dwim-current-dir))
735+
((eq 16 (and (consp curdir) (car curdir))) (rg-dwim-current-file))
736+
(t (rg-dwim-project-dir))))
721737

722738
;;;###autoload (autoload 'rg-literal "rg.el" "" t)
723739
(rg-define-search rg-literal

test/rg.el-test.el

+4-2
Original file line numberDiff line numberDiff line change
@@ -840,8 +840,10 @@ and ungrouped otherwise."
840840
(should (equal called-files "elisp"))
841841
(should (equal (expand-file-name called-dir) project-dir))
842842
(should-not (eq called-literal nil))
843-
(rg-dwim 'curdir)
844-
(should (equal (expand-file-name called-dir) (expand-file-name default-directory)))))
843+
(rg-dwim '(4))
844+
(should (equal (expand-file-name called-dir) (expand-file-name default-directory)))
845+
(rg-dwim '(16))
846+
(should (equal called-files "foo.el"))))
845847

846848
(ert-deftest rg-integration/project-search ()
847849
"Test `rg-project'."

0 commit comments

Comments
 (0)