branch: master commit 692002decacbe48c0ee97f2cb2101bdf9d78b83f Author: Oleh Krehel <ohwoeo...@gmail.com> Commit: Oleh Krehel <ohwoeo...@gmail.com>
counsel.el (counsel-pt): Remove unused args --- counsel.el | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/counsel.el b/counsel.el index 3936597..0a493f8 100644 --- a/counsel.el +++ b/counsel.el @@ -1340,11 +1340,10 @@ pt using `counsel-ag'." :group 'ivy) ;;;###autoload -(defun counsel-pt (&optional initial-input initial-directory) +(defun counsel-pt () "Grep for a string in the current directory using pt. This uses `counsel-ag' with `counsel-pt-base-command' replacing -`counsel-ag-base-command'. INITIAL-INPUT can be given as the -initial minibuffer input." +`counsel-ag-base-command'." (interactive) (let ((counsel-ag-base-command counsel-pt-base-command)) (call-interactively 'counsel-ag)))