@@ -707,17 +707,33 @@ under the current directory."
707
707
:files current
708
708
:dir current)
709
709
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
+
710
719
;;;### autoload
711
720
(defun rg-dwim (&optional curdir )
712
721
" 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."
717
732
(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))))
721
737
722
738
;;;### autoload (autoload 'rg-literal "rg.el" "" t)
723
739
(rg-define-search rg-literal
0 commit comments