Remove -z flag from ag/rg commands
No guarantee the user has the associated decompression libraries installed. I'll implement feature detection for these later.
This commit is contained in:
parent
11d7ae070a
commit
d7308799f6
1 changed files with 4 additions and 5 deletions
|
@ -111,11 +111,10 @@ immediately runs it on the current candidate (ending the ivy session)."
|
||||||
(setq counsel-find-file-ignore-regexp "\\(?:^[#.]\\)\\|\\(?:[#~]$\\)\\|\\(?:^Icon?\\)"
|
(setq counsel-find-file-ignore-regexp "\\(?:^[#.]\\)\\|\\(?:[#~]$\\)\\|\\(?:^Icon?\\)"
|
||||||
counsel-describe-function-function #'helpful-callable
|
counsel-describe-function-function #'helpful-callable
|
||||||
counsel-describe-variable-function #'helpful-variable
|
counsel-describe-variable-function #'helpful-variable
|
||||||
;; Add smart-casing and compressed archive searching (-zS) to default
|
;; Add smart-casing (-S) to default command arguments:
|
||||||
;; command arguments:
|
counsel-rg-base-command "rg -S --no-heading --line-number --color never %s ."
|
||||||
counsel-rg-base-command "rg -zS --no-heading --line-number --color never %s ."
|
counsel-ag-base-command "ag -S --nocolor --nogroup %s"
|
||||||
counsel-ag-base-command "ag -zS --nocolor --nogroup %s"
|
counsel-pt-base-command "pt -S --nocolor --nogroup -e %s")
|
||||||
counsel-pt-base-command "pt -zS --nocolor --nogroup -e %s")
|
|
||||||
|
|
||||||
(add-to-list 'swiper-font-lock-exclude #'+doom-dashboard-mode nil #'eq)
|
(add-to-list 'swiper-font-lock-exclude #'+doom-dashboard-mode nil #'eq)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue