mirror of
https://github.com/vale981/emacs-ipython-notebook
synced 2025-03-06 01:21:38 -05:00
Merge branch 'fix/ein-direct-void' of https://github.com/AlejandroCatalina/emacs-ipython-notebook into AlejandroCatalina-fix/ein-direct-void
This commit is contained in:
commit
3d2b3a81d1
1 changed files with 11 additions and 11 deletions
|
@ -88,18 +88,18 @@ Maximum number of cache to store."
|
|||
(defun ein:ac-direct-get-matches ()
|
||||
(ein:ac-chunk-candidates-from-list ein:ac-direct-matches))
|
||||
|
||||
(ac-define-source ein-direct
|
||||
'((candidates . ein:ac-direct-get-matches)
|
||||
(requires . 0)
|
||||
(prefix . ein:ac-chunk-beginning)
|
||||
(symbol . "s")))
|
||||
(eval '(ac-define-source ein-direct
|
||||
'((candidates . ein:ac-direct-get-matches)
|
||||
(requires . 0)
|
||||
(prefix . ein:ac-chunk-beginning)
|
||||
(symbol . "s"))))
|
||||
|
||||
(ac-define-source ein-async
|
||||
'((candidates . ein:ac-direct-get-matches)
|
||||
(requires . 0)
|
||||
(prefix . ein:ac-chunk-beginning)
|
||||
(init . ein:ac-request-in-background)
|
||||
(symbol . "c")))
|
||||
(eval '(ac-define-source ein-async
|
||||
'((candidates . ein:ac-direct-get-matches)
|
||||
(requires . 0)
|
||||
(prefix . ein:ac-chunk-beginning)
|
||||
(init . ein:ac-request-in-background)
|
||||
(symbol . "c"))))
|
||||
|
||||
(define-obsolete-function-alias 'ac-complete-ein-cached 'ac-complete-ein-async
|
||||
"0.2.1")
|
||||
|
|
Loading…
Add table
Reference in a new issue