Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion projectile.el
Original file line number Diff line number Diff line change
Expand Up @@ -4475,7 +4475,7 @@ installed to work."
(list (projectile--read-search-string-with-default
(format "Ripgrep %ssearch for" (if current-prefix-arg "regexp " "")))
current-prefix-arg))
(let ((args (mapcar (lambda (val) (concat "--glob !" val))
(let ((args (mapcar (lambda (val) (concat "--glob '!" val "'"))
(append projectile-globally-ignored-files
projectile-globally-ignored-directories))))
;; we rely on the external packages ripgrep and rg for the actual search
Expand Down
Loading