Remove unecessary parenthesis in comments

This commit is contained in:
syl20bnr 2017-04-12 23:35:23 -04:00
parent 41de690a55
commit 2fba8eeba8
2 changed files with 3 additions and 3 deletions

View file

@ -248,7 +248,7 @@ Search for a search tool in the order provided by `dotspacemacs-search-tools'."
(interactive)
;; --line-number forces line numbers (disabled by default on windows)
;; no --vimgrep because it adds column numbers that wgrep can't handle
;; (see https://github.com/syl20bnr/spacemacs/pull/8065 )
;; see https://github.com/syl20bnr/spacemacs/pull/8065
(let ((helm-ag-base-command "rg --smart-case --no-heading --color never --line-number"))
(helm-do-ag dir)))
@ -314,7 +314,7 @@ Search for a search tool in the order provided by `dotspacemacs-search-tools'."
(interactive)
;; --line-number forces line numbers (disabled by default on windows)
;; no --vimgrep because it adds column numbers that wgrep can't handle
;; (see https://github.com/syl20bnr/spacemacs/pull/8065 )
;; see https://github.com/syl20bnr/spacemacs/pull/8065
(let ((helm-ag-base-command "rg --smart-case --no-heading --color never --line-number"))
(helm-do-ag-buffers)))

View file

@ -15,7 +15,7 @@
(defvar spacemacs--counsel-commands
'(;; --line-number forces line numbers (disabled by default on windows)
;; no --vimgrep because it adds column numbers that wgrep can't handle
;; (see https://github.com/syl20bnr/spacemacs/pull/8065 )
;; see https://github.com/syl20bnr/spacemacs/pull/8065
("rg" . "rg --smart-case --no-heading --color never --line-number %s %S .")
("ag" . "ag --nocolor --nogroup %s %S .")
("pt" . "pt -e --nocolor --nogroup %s %S .")