|
|
@ -11,6 +11,11 @@ |
|
|
|
Completion starts automatically, depending on the values |
|
|
|
`company-idle-delay' and `company-minimum-prefix-length'. |
|
|
|
|
|
|
|
If called interactively, enable Company mode if ARG is positive, |
|
|
|
and disable it if ARG is zero or negative. If called from Lisp, |
|
|
|
also enable the mode if ARG is omitted or nil, and toggle it if |
|
|
|
ARG is `toggle'; disable the mode otherwise. |
|
|
|
|
|
|
|
Completion can be controlled with the commands: |
|
|
|
`company-complete-common', `company-complete-selection', `company-complete', |
|
|
|
`company-select-next', `company-select-previous'. If these commands are |
|
|
@ -36,6 +41,8 @@ keymap during active completions (`company-active-map'): |
|
|
|
|
|
|
|
\(fn &optional ARG)" t nil) |
|
|
|
|
|
|
|
(put 'global-company-mode 'globalized-minor-mode t) |
|
|
|
|
|
|
|
(defvar global-company-mode nil "\ |
|
|
|
Non-nil if Global Company mode is enabled. |
|
|
|
See the `global-company-mode' command |
|
|
@ -58,18 +65,13 @@ See `company-mode' for more information on Company mode. |
|
|
|
|
|
|
|
\(fn &optional ARG)" t nil) |
|
|
|
|
|
|
|
(autoload 'company-manual-begin "company" "\ |
|
|
|
|
|
|
|
|
|
|
|
\(fn)" t nil) |
|
|
|
(autoload 'company-manual-begin "company" nil t nil) |
|
|
|
|
|
|
|
(autoload 'company-complete "company" "\ |
|
|
|
Insert the common part of all candidates or the current selection. |
|
|
|
The first time this is called, the common part is inserted, the second |
|
|
|
time, or when the selection has been changed, the selected candidate is |
|
|
|
inserted. |
|
|
|
|
|
|
|
\(fn)" t nil) |
|
|
|
inserted." t nil) |
|
|
|
|
|
|
|
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "company" '("company-"))) |
|
|
|
|
|
|
@ -314,9 +316,7 @@ confirm the selection and finish the completion. |
|
|
|
\(fn COMMAND)" nil nil) |
|
|
|
|
|
|
|
(autoload 'company-tng-configure-default "company-tng" "\ |
|
|
|
Applies the default configuration to enable company-tng. |
|
|
|
|
|
|
|
\(fn)" nil nil) |
|
|
|
Applies the default configuration to enable company-tng." nil nil) |
|
|
|
|
|
|
|
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "company-tng" '("company-tng--"))) |
|
|
|
|
|
|
@ -363,7 +363,7 @@ shadow backends that come after it. Recommended usages: |
|
|
|
|
|
|
|
\(fn COMMAND &optional ARG &rest IGNORE)" t nil) |
|
|
|
|
|
|
|
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "company-yasnippet" '("company-yasnippet--"))) |
|
|
|
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "company-yasnippet" '("company-yasnippet-"))) |
|
|
|
|
|
|
|
;;;*** |
|
|
|
|
|
|
|