branch: master
commit 77f51fc69b2f859820312643d286013f9d3c430a
Author: Oleh Krehel <[email protected]>
Commit: Oleh Krehel <[email protected]>
counsel.el (counsel-rg-base-command): Remove --max-columns
While moderately convenient in the minibuffer, this setting may greatly
hamper refactoring via wgrep. The perfect solution would remove the
"--max-columns" specifically for `ivy-occur'. Maybe this can be added later.
---
counsel.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/counsel.el b/counsel.el
index 2b0d9db..dcb8c79 100644
--- a/counsel.el
+++ b/counsel.el
@@ -2002,7 +2002,7 @@ This uses `counsel-ag' with `counsel-ack-base-command'
replacing
;;** `counsel-rg'
-(defcustom counsel-rg-base-command "rg -i --no-heading --line-number
--max-columns 150 --color never %s ."
+(defcustom counsel-rg-base-command "rg -i --no-heading --line-number --color
never %s ."
"Alternative to `counsel-ag-base-command' using ripgrep."
:type 'string
:group 'ivy)