dotemacs

My Emacs configuration
git clone git://git.entf.net/dotemacs
Log | Files | Refs | LICENSE

company-autoloads.el (10774B)


      1 ;;; company-autoloads.el --- automatically extracted autoloads (do not edit)   -*- lexical-binding: t -*-
      2 ;; Generated by the `loaddefs-generate' function.
      3 
      4 ;; This file is part of GNU Emacs.
      5 
      6 ;;; Code:
      7 
      8 (add-to-list 'load-path (or (and load-file-name (directory-file-name (file-name-directory load-file-name))) (car load-path)))
      9 
     10 
     11 
     12 ;;; Generated autoloads from company.el
     13 
     14 (autoload 'company-mode "company" "\
     15 \"complete anything\"; is an in-buffer completion framework.
     16 
     17 Completion starts automatically, depending on the values
     18 `company-idle-delay' and `company-minimum-prefix-length'.
     19 
     20 Completion can be controlled with the commands:
     21 `company-complete-common', `company-complete-selection', `company-complete',
     22 `company-select-next', `company-select-previous'.  If these commands are
     23 called before `company-idle-delay', completion will also start.
     24 
     25 Completions can be searched with `company-search-candidates' or
     26 `company-filter-candidates'.  These can be used while completion is
     27 inactive, as well.
     28 
     29 The completion data is retrieved using `company-backends' and displayed
     30 using `company-frontends'.  If you want to start a specific backend, call
     31 it interactively or use `company-begin-backend'.
     32 
     33 By default, the completions list is sorted alphabetically, unless the
     34 backend chooses otherwise, or `company-transformers' changes it later.
     35 
     36 regular keymap (`company-mode-map'):
     37 
     38 \\{company-mode-map}
     39 keymap during active completions (`company-active-map'):
     40 
     41 \\{company-active-map}
     42 
     43 This is a minor mode.  If called interactively, toggle the
     44 `Company mode' mode.  If the prefix argument is positive, enable
     45 the mode, and if it is zero or negative, disable the mode.
     46 
     47 If called from Lisp, toggle the mode if ARG is `toggle'.  Enable
     48 the mode if ARG is nil, omitted, or is a positive number.
     49 Disable the mode if ARG is a negative number.
     50 
     51 To check whether the minor mode is enabled in the current buffer,
     52 evaluate `company-mode'.
     53 
     54 The mode's hook is called both when the mode is enabled and when
     55 it is disabled.
     56 
     57 (fn &optional ARG)" t)
     58 (put 'global-company-mode 'globalized-minor-mode t)
     59 (defvar global-company-mode nil "\
     60 Non-nil if Global Company mode is enabled.
     61 See the `global-company-mode' command
     62 for a description of this minor mode.
     63 Setting this variable directly does not take effect;
     64 either customize it (see the info node `Easy Customization')
     65 or call the function `global-company-mode'.")
     66 (custom-autoload 'global-company-mode "company" nil)
     67 (autoload 'global-company-mode "company" "\
     68 Toggle Company mode in all buffers.
     69 With prefix ARG, enable Global Company mode if ARG is positive;
     70 otherwise, disable it.
     71 
     72 If called from Lisp, toggle the mode if ARG is `toggle'.
     73 Enable the mode if ARG is nil, omitted, or is a positive number.
     74 Disable the mode if ARG is a negative number.
     75 
     76 Company mode is enabled in all buffers where `company-mode-on' would
     77 do it.
     78 
     79 See `company-mode' for more information on Company mode.
     80 
     81 (fn &optional ARG)" t)
     82 (autoload 'company-manual-begin "company" nil t)
     83 (autoload 'company-complete "company" "\
     84 Insert the common part of all candidates or the current selection.
     85 The first time this is called, the common part is inserted, the second
     86 time, or when the selection has been changed, the selected candidate is
     87 inserted." t)
     88 (register-definition-prefixes "company" '("company-"))
     89 
     90 
     91 ;;; Generated autoloads from company-abbrev.el
     92 
     93 (autoload 'company-abbrev "company-abbrev" "\
     94 `company-mode' completion backend for abbrev.
     95 
     96 (fn COMMAND &optional ARG &rest IGNORED)" t)
     97 (register-definition-prefixes "company-abbrev" '("company-abbrev-insert"))
     98 
     99 
    100 ;;; Generated autoloads from company-bbdb.el
    101 
    102 (autoload 'company-bbdb "company-bbdb" "\
    103 `company-mode' completion backend for BBDB.
    104 
    105 (fn COMMAND &optional ARG &rest IGNORE)" t)
    106 (register-definition-prefixes "company-bbdb" '("company-bbdb-"))
    107 
    108 
    109 ;;; Generated autoloads from company-capf.el
    110 
    111 (register-definition-prefixes "company-capf" '("company-"))
    112 
    113 
    114 ;;; Generated autoloads from company-clang.el
    115 
    116 (register-definition-prefixes "company-clang" '("company-clang"))
    117 
    118 
    119 ;;; Generated autoloads from company-cmake.el
    120 
    121 (register-definition-prefixes "company-cmake" '("company-cmake"))
    122 
    123 
    124 ;;; Generated autoloads from company-css.el
    125 
    126 (autoload 'company-css "company-css" "\
    127 `company-mode' completion backend for `css-mode'.
    128 
    129 (fn COMMAND &optional ARG &rest IGNORED)" t)
    130 (register-definition-prefixes "company-css" '("company-css-"))
    131 
    132 
    133 ;;; Generated autoloads from company-dabbrev.el
    134 
    135 (autoload 'company-dabbrev "company-dabbrev" "\
    136 dabbrev-like `company-mode' completion backend.
    137 
    138 (fn COMMAND &optional ARG &rest IGNORED)" t)
    139 (register-definition-prefixes "company-dabbrev" '("company-dabbrev-"))
    140 
    141 
    142 ;;; Generated autoloads from company-dabbrev-code.el
    143 
    144 (autoload 'company-dabbrev-code "company-dabbrev-code" "\
    145 dabbrev-like `company-mode' backend for code.
    146 The backend looks for all symbols in the current buffer that aren't in
    147 comments or strings.
    148 
    149 (fn COMMAND &optional ARG &rest IGNORED)" t)
    150 (register-definition-prefixes "company-dabbrev-code" '("company-dabbrev-code-"))
    151 
    152 
    153 ;;; Generated autoloads from company-elisp.el
    154 
    155 (autoload 'company-elisp "company-elisp" "\
    156 `company-mode' completion backend for Emacs Lisp.
    157 
    158 (fn COMMAND &optional ARG &rest IGNORED)" t)
    159 (register-definition-prefixes "company-elisp" '("company-elisp-"))
    160 
    161 
    162 ;;; Generated autoloads from company-etags.el
    163 
    164 (autoload 'company-etags "company-etags" "\
    165 `company-mode' completion backend for etags.
    166 
    167 (fn COMMAND &optional ARG &rest IGNORED)" t)
    168 (register-definition-prefixes "company-etags" '("company-etags-"))
    169 
    170 
    171 ;;; Generated autoloads from company-files.el
    172 
    173 (autoload 'company-files "company-files" "\
    174 `company-mode' completion backend existing file names.
    175 Completions works for proper absolute and relative files paths.
    176 File paths with spaces are only supported inside strings.
    177 
    178 (fn COMMAND &optional ARG &rest IGNORED)" t)
    179 (register-definition-prefixes "company-files" '("company-file"))
    180 
    181 
    182 ;;; Generated autoloads from company-gtags.el
    183 
    184 (autoload 'company-gtags "company-gtags" "\
    185 `company-mode' completion backend for GNU Global.
    186 
    187 (fn COMMAND &optional ARG &rest IGNORED)" t)
    188 (register-definition-prefixes "company-gtags" '("company-gtags-"))
    189 
    190 
    191 ;;; Generated autoloads from company-ispell.el
    192 
    193 (autoload 'company-ispell "company-ispell" "\
    194 `company-mode' completion backend using Ispell.
    195 
    196 (fn COMMAND &optional ARG &rest IGNORED)" t)
    197 (register-definition-prefixes "company-ispell" '("company-ispell-"))
    198 
    199 
    200 ;;; Generated autoloads from company-keywords.el
    201 
    202 (autoload 'company-keywords "company-keywords" "\
    203 `company-mode' backend for programming language keywords.
    204 
    205 (fn COMMAND &optional ARG &rest IGNORED)" t)
    206 (register-definition-prefixes "company-keywords" '("company-keywords-"))
    207 
    208 
    209 ;;; Generated autoloads from company-nxml.el
    210 
    211 (autoload 'company-nxml "company-nxml" "\
    212 `company-mode' completion backend for `nxml-mode'.
    213 
    214 (fn COMMAND &optional ARG &rest IGNORED)" t)
    215 (register-definition-prefixes "company-nxml" '("company-nxml-"))
    216 
    217 
    218 ;;; Generated autoloads from company-oddmuse.el
    219 
    220 (autoload 'company-oddmuse "company-oddmuse" "\
    221 `company-mode' completion backend for `oddmuse-mode'.
    222 
    223 (fn COMMAND &optional ARG &rest IGNORED)" t)
    224 (register-definition-prefixes "company-oddmuse" '("company-oddmuse-"))
    225 
    226 
    227 ;;; Generated autoloads from company-semantic.el
    228 
    229 (autoload 'company-semantic "company-semantic" "\
    230 `company-mode' completion backend using CEDET Semantic.
    231 
    232 (fn COMMAND &optional ARG &rest IGNORED)" t)
    233 (register-definition-prefixes "company-semantic" '("company-semantic-"))
    234 
    235 
    236 ;;; Generated autoloads from company-template.el
    237 
    238 (register-definition-prefixes "company-template" '("company-template-"))
    239 
    240 
    241 ;;; Generated autoloads from company-tempo.el
    242 
    243 (autoload 'company-tempo "company-tempo" "\
    244 `company-mode' completion backend for tempo.
    245 
    246 (fn COMMAND &optional ARG &rest IGNORED)" t)
    247 (register-definition-prefixes "company-tempo" '("company-tempo-"))
    248 
    249 
    250 ;;; Generated autoloads from company-tng.el
    251 
    252 (autoload 'company-tng-frontend "company-tng" "\
    253 When the user changes the selection at least once, this
    254 frontend will display the candidate in the buffer as if it's
    255 already there and any key outside of `company-active-map' will
    256 confirm the selection and finish the completion.
    257 
    258 (fn COMMAND)")
    259 (define-obsolete-function-alias 'company-tng-configure-default 'company-tng-mode "0.10.0" "Applies the default configuration to enable company-tng.")
    260 (defvar company-tng-mode nil "\
    261 Non-nil if Company-Tng mode is enabled.
    262 See the `company-tng-mode' command
    263 for a description of this minor mode.
    264 Setting this variable directly does not take effect;
    265 either customize it (see the info node `Easy Customization')
    266 or call the function `company-tng-mode'.")
    267 (custom-autoload 'company-tng-mode "company-tng" nil)
    268 (autoload 'company-tng-mode "company-tng" "\
    269 This minor mode enables `company-tng-frontend'.
    270 
    271 This is a global minor mode.  If called interactively, toggle the
    272 `Company-Tng mode' mode.  If the prefix argument is positive,
    273 enable the mode, and if it is zero or negative, disable the mode.
    274 
    275 If called from Lisp, toggle the mode if ARG is `toggle'.  Enable
    276 the mode if ARG is nil, omitted, or is a positive number.
    277 Disable the mode if ARG is a negative number.
    278 
    279 To check whether the minor mode is enabled in the current buffer,
    280 evaluate `(default-value \\='company-tng-mode)'.
    281 
    282 The mode's hook is called both when the mode is enabled and when
    283 it is disabled.
    284 
    285 (fn &optional ARG)" t)
    286 (register-definition-prefixes "company-tng" '("company-tng-"))
    287 
    288 
    289 ;;; Generated autoloads from company-yasnippet.el
    290 
    291 (autoload 'company-yasnippet "company-yasnippet" "\
    292 `company-mode' backend for `yasnippet'.
    293 
    294 This backend should be used with care, because as long as there are
    295 snippets defined for the current major mode, this backend will always
    296 shadow backends that come after it.  Recommended usages:
    297 
    298 * In a buffer-local value of `company-backends', grouped with a backend or
    299   several that provide actual text completions.
    300 
    301   (add-hook \\='js-mode-hook
    302             (lambda ()
    303               (set (make-local-variable \\='company-backends)
    304                    \\='((company-dabbrev-code company-yasnippet)))))
    305 
    306 * After keyword `:with', grouped with other backends.
    307 
    308   (push \\='(company-semantic :with company-yasnippet) company-backends)
    309 
    310 * Not in `company-backends', just bound to a key.
    311 
    312   (global-set-key (kbd \"C-c y\") \\='company-yasnippet)
    313 
    314 (fn COMMAND &optional ARG &rest IGNORE)" t)
    315 (register-definition-prefixes "company-yasnippet" '("company-yasnippet-"))
    316 
    317 ;;; End of scraped data
    318 
    319 (provide 'company-autoloads)
    320 
    321 ;; Local Variables:
    322 ;; version-control: never
    323 ;; no-byte-compile: t
    324 ;; no-update-autoloads: t
    325 ;; no-native-compile: t
    326 ;; coding: utf-8-emacs-unix
    327 ;; End:
    328 
    329 ;;; company-autoloads.el ends here