Skip to content

Commit

Permalink
Fix for company users
Browse files Browse the repository at this point in the history
  • Loading branch information
syohex committed Mar 5, 2015
1 parent f78697a commit 363c039
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jedi-core.el
Expand Up @@ -633,7 +633,7 @@ See: https://github.com/tkf/emacs-jedi/issues/54"
(concat call_name "(" (mapconcat #'identity params ", ") ")"))))

(defun jedi:get-in-function-call--tooltip-show (args)
(when (and args (not ac-completing))
(when (and args (and (boundp 'ac-completing) (not ac-completing)))
(jedi:tooltip-show
(apply #'jedi:get-in-function-call--construct-call-signature args))))

Expand Down

0 comments on commit 363c039

Please sign in to comment.