I am using company-mode
for backends to auto-complete in Python and emacs
is used as command line.
(add-hook 'after-init-hook 'global-company-mode)
(setq company-auto-complete t)
(setq company-auto-complete t)
(global-set-key (kbd "C-c C-k") 'company-complete)
During autocompletion, it shows the name of the fuctions and their type. In addition to those, I was wondering can it show the doc
of the each function like jedi
does (example first image on the jedi site)?
company
(information of functions are missing on the right hand-side):
jedi
: