branch: externals/ivy-hydra
commit 640b83de79e94a36f7b07303bfaae4d24aab187e
Author: Jakub Zalewski <[email protected]>
Commit: Oleh Krehel <[email protected]>

    counsel.el (counsel-rg-base-command): Fix missing space
    
    Fixes #2486
    Fixes #2487
---
 counsel.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/counsel.el b/counsel.el
index 19926a2..eaf833a 100644
--- a/counsel.el
+++ b/counsel.el
@@ -3067,7 +3067,7 @@ This uses `counsel-ag' with `counsel-ack-base-command' 
replacing
 ;;** `counsel-rg'
 (defcustom counsel-rg-base-command
   (if (memq system-type '(ms-dos windows-nt))
-      "rg -M 120 --with-filename --no-heading --line-number --color never %s 
--path-separator /."
+      "rg -M 120 --with-filename --no-heading --line-number --color never %s 
--path-separator / ."
     "rg -M 120 --with-filename --no-heading --line-number --color never %s")
   "Alternative to `counsel-ag-base-command' using ripgrep.
 

Reply via email to