7 lines
307 B
EmacsLisp
7 lines
307 B
EmacsLisp
(when (configuration-layer/package-usedp 'company-ycmd)
|
|
(defun spacemacs/company-ycmd-manual-semantic-complete ()
|
|
(interactive)
|
|
(company-cancel)
|
|
(let ((ycmd-force-semantic-completion (not (company-ycmd--in-include))))
|
|
(setq company-backend 'company-ycmd)
|
|
(company-manual-begin))))
|