[Emacs] Use company-dabbrev-code to supplement company-ghc

company-ghc does not provide in buffer completion.
This commit is contained in:
Ivan Malison 2016-11-07 22:48:50 -08:00
parent 4cc5df316f
commit 4e639be905
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8

View File

@ -2820,7 +2820,7 @@ Intero seems to be causing hangs, so it has been disabled
(use-package company-ghc
:demand t
:config
(add-to-list 'company-backends 'company-ghc))
(add-to-list 'company-backends '(company-ghc :with company-dabbrev-code)))
#+END_SRC
*** C/C++
#+BEGIN_SRC emacs-lisp