branch: master commit eed1f06aa89268aae7b0dffe39b71ceb524345b5 Author: Oleh Krehel <ohwoeo...@gmail.com> Commit: Oleh Krehel <ohwoeo...@gmail.com>
counsel.el (counsel--py-action): Don't auto-insert parens Fixes #2229 --- counsel.el | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/counsel.el b/counsel.el index 1d72013..633e958 100644 --- a/counsel.el +++ b/counsel.el @@ -371,11 +371,7 @@ Update the minibuffer with the amount of lines collected every ivy-completion-end)) (setq ivy-completion-beg (point)) (insert symbol-name) - (setq ivy-completion-end (point)) - (when (equal (get-text-property 0 'symbol symbol-name) "f") - (insert "()") - (setq ivy-completion-end (point)) - (backward-char))))) + (setq ivy-completion-end (point))))) ;;** `counsel-clj' (declare-function cider-sync-request:complete "ext:cider-client")