branch: externals/ivy-hydra
commit df41a6d0c95b77caf9198bf20ab407d08a1b358d
Author: Oleh Krehel <[email protected]>
Commit: Oleh Krehel <[email protected]>

    counsel.el (counsel-rg-base-command): Double the default max columns
    
    Re #2482
---
 counsel.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/counsel.el b/counsel.el
index 3386a5d..74a6a19 100644
--- a/counsel.el
+++ b/counsel.el
@@ -3075,8 +3075,8 @@ 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")
+      "rg -M 240 --with-filename --no-heading --line-number --color never %s 
--path-separator / ."
+    "rg -M 240 --with-filename --no-heading --line-number --color never %s")
   "Alternative to `counsel-ag-base-command' using ripgrep.
 
 Note: don't use single quotes for the regex."

Reply via email to