]> code.delx.au - gnu-emacs-elpa/blob - company.el
company--should-idle-begin: use a more careful check
[gnu-emacs-elpa] / company.el
1 ;;; company.el --- Modular text completion framework -*- lexical-binding: t -*-
2
3 ;; Copyright (C) 2009-2014 Free Software Foundation, Inc.
4
5 ;; Author: Nikolaj Schumacher
6 ;; Maintainer: Dmitry Gutov <dgutov@yandex.ru>
7 ;; URL: http://company-mode.github.io/
8 ;; Version: 0.8.1-cvs
9 ;; Keywords: abbrev, convenience, matching
10 ;; Package-Requires: ((emacs "24.1") (cl-lib "0.5"))
11
12 ;; This file is part of GNU Emacs.
13
14 ;; GNU Emacs is free software: you can redistribute it and/or modify
15 ;; it under the terms of the GNU General Public License as published by
16 ;; the Free Software Foundation, either version 3 of the License, or
17 ;; (at your option) any later version.
18
19 ;; GNU Emacs is distributed in the hope that it will be useful,
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 ;; GNU General Public License for more details.
23
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26
27 ;;; Commentary:
28 ;;
29 ;; Company is a modular completion mechanism. Modules for retrieving completion
30 ;; candidates are called back-ends, modules for displaying them are front-ends.
31 ;;
32 ;; Company comes with many back-ends, e.g. `company-elisp'. These are
33 ;; distributed in separate files and can be used individually.
34 ;;
35 ;; Place company.el and the back-ends you want to use in a directory and add the
36 ;; following to your .emacs:
37 ;; (add-to-list 'load-path "/path/to/company")
38 ;; (autoload 'company-mode "company" nil t)
39 ;;
40 ;; Enable company-mode with M-x company-mode. For further information look at
41 ;; the documentation for `company-mode' (C-h f company-mode RET)
42 ;;
43 ;; If you want to start a specific back-end, call it interactively or use
44 ;; `company-begin-backend'. For example:
45 ;; M-x company-abbrev will prompt for and insert an abbrev.
46 ;;
47 ;; To write your own back-end, look at the documentation for `company-backends'.
48 ;; Here is a simple example completing "foo":
49 ;;
50 ;; (defun company-my-backend (command &optional arg &rest ignored)
51 ;; (pcase command
52 ;; (`prefix (when (looking-back "foo\\>")
53 ;; (match-string 0)))
54 ;; (`candidates (list "foobar" "foobaz" "foobarbaz"))
55 ;; (`meta (format "This value is named %s" arg))))
56 ;;
57 ;; Sometimes it is a good idea to mix several back-ends together, for example to
58 ;; enrich gtags with dabbrev-code results (to emulate local variables).
59 ;; To do this, add a list with both back-ends as an element in company-backends.
60 ;;
61 ;; Known Issues:
62 ;; When point is at the very end of the buffer, the pseudo-tooltip appears very
63 ;; wrong, unless company is allowed to temporarily insert a fake newline.
64 ;; This behavior is enabled by `company-end-of-buffer-workaround'.
65 ;;
66 ;;; Change Log:
67 ;;
68 ;; See NEWS.md in the repository.
69
70 ;;; Code:
71
72 (require 'cl-lib)
73 (require 'newcomment)
74
75 ;; FIXME: Use `user-error'.
76 (add-to-list 'debug-ignored-errors "^.* frontend cannot be used twice$")
77 (add-to-list 'debug-ignored-errors "^Echo area cannot be used twice$")
78 (add-to-list 'debug-ignored-errors "^No \\(document\\|loc\\)ation available$")
79 (add-to-list 'debug-ignored-errors "^Company not ")
80 (add-to-list 'debug-ignored-errors "^No candidate number ")
81 (add-to-list 'debug-ignored-errors "^Cannot complete at point$")
82 (add-to-list 'debug-ignored-errors "^No other back-end$")
83
84 ;;; Compatibility
85 (eval-and-compile
86 ;; `defvar-local' for Emacs 24.2 and below
87 (unless (fboundp 'defvar-local)
88 (defmacro defvar-local (var val &optional docstring)
89 "Define VAR as a buffer-local variable with default value VAL.
90 Like `defvar' but additionally marks the variable as being automatically
91 buffer-local wherever it is set."
92 (declare (debug defvar) (doc-string 3))
93 `(progn
94 (defvar ,var ,val ,docstring)
95 (make-variable-buffer-local ',var)))))
96
97 (defgroup company nil
98 "Extensible inline text completion mechanism"
99 :group 'abbrev
100 :group 'convenience
101 :group 'matching)
102
103 (defface company-tooltip
104 '((default :foreground "black")
105 (((class color) (min-colors 88) (background light))
106 (:background "cornsilk"))
107 (((class color) (min-colors 88) (background dark))
108 (:background "yellow")))
109 "Face used for the tooltip.")
110
111 (defface company-tooltip-selection
112 '((default :inherit company-tooltip)
113 (((class color) (min-colors 88) (background light))
114 (:background "light blue"))
115 (((class color) (min-colors 88) (background dark))
116 (:background "orange1"))
117 (t (:background "green")))
118 "Face used for the selection in the tooltip.")
119
120 (defface company-tooltip-mouse
121 '((default :inherit highlight))
122 "Face used for the tooltip item under the mouse.")
123
124 (defface company-tooltip-common
125 '((default :inherit company-tooltip)
126 (((background light))
127 :foreground "darkred")
128 (((background dark))
129 :foreground "red"))
130 "Face used for the common completion in the tooltip.")
131
132 (defface company-tooltip-common-selection
133 '((default :inherit company-tooltip-selection)
134 (((background light))
135 :foreground "darkred")
136 (((background dark))
137 :foreground "red"))
138 "Face used for the selected common completion in the tooltip.")
139
140 (defface company-tooltip-annotation
141 '((default :inherit company-tooltip)
142 (((background light))
143 :foreground "firebrick4")
144 (((background dark))
145 :foreground "red4"))
146 "Face used for the annotation in the tooltip.")
147
148 (defface company-scrollbar-fg
149 '((((background light))
150 :background "darkred")
151 (((background dark))
152 :background "red"))
153 "Face used for the tooltip scrollbar thumb.")
154
155 (defface company-scrollbar-bg
156 '((default :inherit company-tooltip)
157 (((background light))
158 :background "wheat")
159 (((background dark))
160 :background "gold"))
161 "Face used for the tooltip scrollbar background.")
162
163 (defface company-preview
164 '((((background light))
165 :inherit company-tooltip-selection)
166 (((background dark))
167 :background "blue4"
168 :foreground "wheat"))
169 "Face used for the completion preview.")
170
171 (defface company-preview-common
172 '((((background light))
173 :inherit company-tooltip-selection)
174 (((background dark))
175 :inherit company-preview
176 :foreground "red"))
177 "Face used for the common part of the completion preview.")
178
179 (defface company-preview-search
180 '((((background light))
181 :inherit company-tooltip-common-selection)
182 (((background dark))
183 :inherit company-preview
184 :background "blue1"))
185 "Face used for the search string in the completion preview.")
186
187 (defface company-echo nil
188 "Face used for completions in the echo area.")
189
190 (defface company-echo-common
191 '((((background dark)) (:foreground "firebrick1"))
192 (((background light)) (:background "firebrick4")))
193 "Face used for the common part of completions in the echo area.")
194
195 (defun company-frontends-set (variable value)
196 ;; uniquify
197 (let ((remainder value))
198 (setcdr remainder (delq (car remainder) (cdr remainder))))
199 (and (memq 'company-pseudo-tooltip-unless-just-one-frontend value)
200 (memq 'company-pseudo-tooltip-frontend value)
201 (error "Pseudo tooltip frontend cannot be used twice"))
202 (and (memq 'company-preview-if-just-one-frontend value)
203 (memq 'company-preview-frontend value)
204 (error "Preview frontend cannot be used twice"))
205 (and (memq 'company-echo value)
206 (memq 'company-echo-metadata-frontend value)
207 (error "Echo area cannot be used twice"))
208 ;; preview must come last
209 (dolist (f '(company-preview-if-just-one-frontend company-preview-frontend))
210 (when (memq f value)
211 (setq value (append (delq f value) (list f)))))
212 (set variable value))
213
214 (defcustom company-frontends '(company-pseudo-tooltip-unless-just-one-frontend
215 company-preview-if-just-one-frontend
216 company-echo-metadata-frontend)
217 "The list of active front-ends (visualizations).
218 Each front-end is a function that takes one argument. It is called with
219 one of the following arguments:
220
221 `show': When the visualization should start.
222
223 `hide': When the visualization should end.
224
225 `update': When the data has been updated.
226
227 `pre-command': Before every command that is executed while the
228 visualization is active.
229
230 `post-command': After every command that is executed while the
231 visualization is active.
232
233 The visualized data is stored in `company-prefix', `company-candidates',
234 `company-common', `company-selection', `company-point' and
235 `company-search-string'."
236 :set 'company-frontends-set
237 :type '(repeat (choice (const :tag "echo" company-echo-frontend)
238 (const :tag "echo, strip common"
239 company-echo-strip-common-frontend)
240 (const :tag "show echo meta-data in echo"
241 company-echo-metadata-frontend)
242 (const :tag "pseudo tooltip"
243 company-pseudo-tooltip-frontend)
244 (const :tag "pseudo tooltip, multiple only"
245 company-pseudo-tooltip-unless-just-one-frontend)
246 (const :tag "preview" company-preview-frontend)
247 (const :tag "preview, unique only"
248 company-preview-if-just-one-frontend)
249 (function :tag "custom function" nil))))
250
251 (defcustom company-tooltip-limit 10
252 "The maximum number of candidates in the tooltip."
253 :type 'integer)
254
255 (defcustom company-tooltip-minimum 6
256 "The minimum height of the tooltip.
257 If this many lines are not available, prefer to display the tooltip above."
258 :type 'integer)
259
260 (defcustom company-tooltip-minimum-width 0
261 "The minimum width of the tooltip's inner area.
262 This doesn't include the margins and the scroll bar."
263 :type 'integer
264 :package-version '(company . "0.8.0"))
265
266 (defcustom company-tooltip-margin 1
267 "Width of margin columns to show around the toolip."
268 :type 'integer)
269
270 (defcustom company-tooltip-offset-display 'scrollbar
271 "Method using which the tooltip displays scrolling position.
272 `scrollbar' means draw a scrollbar to the right of the items.
273 `lines' means wrap items in lines with \"before\" and \"after\" counters."
274 :type '(choice (const :tag "Scrollbar" scrollbar)
275 (const :tag "Two lines" lines)))
276
277 (defcustom company-tooltip-align-annotations nil
278 "When non-nil, align annotations to the right tooltip border."
279 :type 'boolean
280 :package-version '(company . "0.7.1"))
281
282 (defcustom company-tooltip-flip-when-above nil
283 "Whether to flip the tooltip when it's above the current line."
284 :type 'boolean
285 :package-version '(company . "0.8.1"))
286
287 (defvar company-safe-backends
288 '((company-abbrev . "Abbrev")
289 (company-bbdb . "BBDB")
290 (company-capf . "completion-at-point-functions")
291 (company-clang . "Clang")
292 (company-cmake . "CMake")
293 (company-css . "CSS")
294 (company-dabbrev . "dabbrev for plain text")
295 (company-dabbrev-code . "dabbrev for code")
296 (company-eclim . "Eclim (an Eclipse interface)")
297 (company-elisp . "Emacs Lisp")
298 (company-etags . "etags")
299 (company-files . "Files")
300 (company-gtags . "GNU Global")
301 (company-ispell . "Ispell")
302 (company-keywords . "Programming language keywords")
303 (company-nxml . "nxml")
304 (company-oddmuse . "Oddmuse")
305 (company-pysmell . "PySmell")
306 (company-ropemacs . "ropemacs")
307 (company-semantic . "Semantic")
308 (company-tempo . "Tempo templates")
309 (company-xcode . "Xcode")))
310 (put 'company-safe-backends 'risky-local-variable t)
311
312 (defun company-safe-backends-p (backends)
313 (and (consp backends)
314 (not (cl-dolist (backend backends)
315 (unless (if (consp backend)
316 (company-safe-backends-p backend)
317 (assq backend company-safe-backends))
318 (cl-return t))))))
319
320 (defcustom company-backends `(,@(unless (version< "24.3.50" emacs-version)
321 (list 'company-elisp))
322 company-bbdb
323 company-nxml company-css
324 company-eclim company-semantic company-clang
325 company-xcode company-ropemacs company-cmake
326 company-capf
327 (company-dabbrev-code company-gtags company-etags
328 company-keywords)
329 company-oddmuse company-files company-dabbrev)
330 "The list of active back-ends (completion engines).
331
332 `company-begin-backend' can be used to start a specific back-end,
333 `company-other-backend' will skip to the next matching back-end in the list.
334
335 Each back-end is a function that takes a variable number of arguments.
336 The first argument is the command requested from the back-end. It is one
337 of the following:
338
339 `prefix': The back-end should return the text to be completed. It must be
340 text immediately before point. Returning nil passes control to the next
341 back-end. The function should return `stop' if it should complete but
342 cannot \(e.g. if it is in the middle of a string\). Instead of a string,
343 the back-end may return a cons where car is the prefix and cdr is used in
344 `company-minimum-prefix-length' test. It must be either number or t, and
345 in the latter case the test automatically succeeds.
346
347 `candidates': The second argument is the prefix to be completed. The
348 return value should be a list of candidates that match the prefix.
349
350 Non-prefix matches are also supported (candidates that don't start with the
351 prefix, but match it in some backend-defined way). Backends that use this
352 feature must disable cache (return t to `no-cache') and should also respond
353 to `match'.
354
355 Optional commands:
356
357 `sorted': Return t here to indicate that the candidates are sorted and will
358 not need to be sorted again.
359
360 `duplicates': If non-nil, company will take care of removing duplicates
361 from the list.
362
363 `no-cache': Usually company doesn't ask for candidates again as completion
364 progresses, unless the back-end returns t for this command. The second
365 argument is the latest prefix.
366
367 `meta': The second argument is a completion candidate. Return a (short)
368 documentation string for it.
369
370 `doc-buffer': The second argument is a completion candidate. Return a
371 buffer with documentation for it. Preferably use `company-doc-buffer',
372
373 `location': The second argument is a completion candidate. Return the cons
374 of buffer and buffer location, or of file and line number where the
375 completion candidate was defined.
376
377 `annotation': The second argument is a completion candidate. Return a
378 string to be displayed inline with the candidate in the popup. If
379 duplicates are removed by company, candidates with equal string values will
380 be kept if they have different annotations. For that to work properly,
381 backends should store the related information on candidates using text
382 properties.
383
384 `match': The second argument is a completion candidate. Backends that
385 provide non-prefix completions should return the position of the end of
386 text in the candidate that matches `prefix'. It will be used when
387 rendering the popup.
388
389 `require-match': If this returns t, the user is not allowed to enter
390 anything not offered as a candidate. Use with care! The default value nil
391 gives the user that choice with `company-require-match'. Return value
392 `never' overrides that option the other way around.
393
394 `init': Called once for each buffer. The back-end can check for external
395 programs and files and load any required libraries. Raising an error here
396 will show up in message log once, and the back-end will not be used for
397 completion.
398
399 `post-completion': Called after a completion candidate has been inserted
400 into the buffer. The second argument is the candidate. Can be used to
401 modify it, e.g. to expand a snippet.
402
403 The back-end should return nil for all commands it does not support or
404 does not know about. It should also be callable interactively and use
405 `company-begin-backend' to start itself in that case.
406
407 Grouped back-ends:
408
409 An element of `company-backends' can also itself be a list of back-ends,
410 then it's considered to be a \"grouped\" back-end.
411
412 When possible, commands taking a candidate as an argument are dispatched to
413 the back-end it came from. In other cases, the first non-nil value among
414 all the back-ends is returned.
415
416 The latter is the case for the `prefix' command. But if the group contains
417 the keyword `:with', the back-ends after it are ignored for this command.
418
419 The completions from back-ends in a group are merged (but only from those
420 that return the same `prefix').
421
422 Asynchronous back-ends:
423
424 The return value of each command can also be a cons (:async . FETCHER)
425 where FETCHER is a function of one argument, CALLBACK. When the data
426 arrives, FETCHER must call CALLBACK and pass it the appropriate return
427 value, as described above.
428
429 True asynchronous operation is only supported for command `candidates', and
430 only during idle completion. Other commands will block the user interface,
431 even if the back-end uses the asynchronous calling convention."
432 :type `(repeat
433 (choice
434 :tag "Back-end"
435 ,@(mapcar (lambda (b) `(const :tag ,(cdr b) ,(car b)))
436 company-safe-backends)
437 (symbol :tag "User defined")
438 (repeat :tag "Merged Back-ends"
439 (choice :tag "Back-end"
440 ,@(mapcar (lambda (b)
441 `(const :tag ,(cdr b) ,(car b)))
442 company-safe-backends)
443 (const :tag "With" :with)
444 (symbol :tag "User defined"))))))
445
446 (put 'company-backends 'safe-local-variable 'company-safe-backends-p)
447
448 (defcustom company-transformers nil
449 "Functions to change the list of candidates received from backends,
450 after sorting and removal of duplicates (if appropriate).
451 Each function gets called with the return value of the previous one."
452 :type '(choice
453 (const :tag "None" nil)
454 (const :tag "Sort by occurrence" (company-sort-by-occurrence))
455 (const :tag "Sort by back-end importance"
456 (company-sort-by-backend-importance))
457 (repeat :tag "User defined" (function))))
458
459 (defcustom company-completion-started-hook nil
460 "Hook run when company starts completing.
461 The hook is called with one argument that is non-nil if the completion was
462 started manually."
463 :type 'hook)
464
465 (defcustom company-completion-cancelled-hook nil
466 "Hook run when company cancels completing.
467 The hook is called with one argument that is non-nil if the completion was
468 aborted manually."
469 :type 'hook)
470
471 (defcustom company-completion-finished-hook nil
472 "Hook run when company successfully completes.
473 The hook is called with the selected candidate as an argument.
474
475 If you indend to use it to post-process candidates from a specific
476 back-end, consider using the `post-completion' command instead."
477 :type 'hook)
478
479 (defcustom company-minimum-prefix-length 3
480 "The minimum prefix length for idle completion."
481 :type '(integer :tag "prefix length"))
482
483 (defcustom company-abort-manual-when-too-short nil
484 "If enabled, cancel a manually started completion when the prefix gets
485 shorter than both `company-minimum-prefix-length' and the length of the
486 prefix it was started from."
487 :type 'boolean
488 :package-version '(company . "0.8.0"))
489
490 (defcustom company-require-match 'company-explicit-action-p
491 "If enabled, disallow non-matching input.
492 This can be a function do determine if a match is required.
493
494 This can be overridden by the back-end, if it returns t or `never' to
495 `require-match'. `company-auto-complete' also takes precedence over this."
496 :type '(choice (const :tag "Off" nil)
497 (function :tag "Predicate function")
498 (const :tag "On, if user interaction took place"
499 'company-explicit-action-p)
500 (const :tag "On" t)))
501
502 (defcustom company-auto-complete nil
503 "Determines when to auto-complete.
504 If this is enabled, all characters from `company-auto-complete-chars'
505 trigger insertion of the selected completion candidate.
506 This can also be a function."
507 :type '(choice (const :tag "Off" nil)
508 (function :tag "Predicate function")
509 (const :tag "On, if user interaction took place"
510 'company-explicit-action-p)
511 (const :tag "On" t)))
512
513 (defcustom company-auto-complete-chars '(?\ ?\) ?.)
514 "Determines which characters trigger auto-completion.
515 See `company-auto-complete'. If this is a string, each string character
516 tiggers auto-completion. If it is a list of syntax description characters (see
517 `modify-syntax-entry'), all characters with that syntax auto-complete.
518
519 This can also be a function, which is called with the new input and should
520 return non-nil if company should auto-complete.
521
522 A character that is part of a valid candidate never triggers auto-completion."
523 :type '(choice (string :tag "Characters")
524 (set :tag "Syntax"
525 (const :tag "Whitespace" ?\ )
526 (const :tag "Symbol" ?_)
527 (const :tag "Opening parentheses" ?\()
528 (const :tag "Closing parentheses" ?\))
529 (const :tag "Word constituent" ?w)
530 (const :tag "Punctuation." ?.)
531 (const :tag "String quote." ?\")
532 (const :tag "Paired delimiter." ?$)
533 (const :tag "Expression quote or prefix operator." ?\')
534 (const :tag "Comment starter." ?<)
535 (const :tag "Comment ender." ?>)
536 (const :tag "Character-quote." ?/)
537 (const :tag "Generic string fence." ?|)
538 (const :tag "Generic comment fence." ?!))
539 (function :tag "Predicate function")))
540
541 (defcustom company-idle-delay .5
542 "The idle delay in seconds until completion starts automatically.
543 A value of nil means no idle completion, t means show candidates
544 immediately when a prefix of `company-minimum-prefix-length' is reached."
545 :type '(choice (const :tag "never (nil)" nil)
546 (const :tag "immediate (t)" t)
547 (number :tag "seconds")))
548
549 (defcustom company-begin-commands '(self-insert-command org-self-insert-command)
550 "A list of commands after which idle completion is allowed.
551 If this is t, it can show completions after any command except a few from a
552 pre-defined list. See `company-idle-delay'.
553
554 Alternatively, any command with a non-nil `company-begin' property is
555 treated as if it was on this list."
556 :type '(choice (const :tag "Any command" t)
557 (const :tag "Self insert command" '(self-insert-command))
558 (repeat :tag "Commands" function)))
559
560 (defcustom company-continue-commands '(not save-buffer save-some-buffers
561 save-buffers-kill-terminal
562 save-buffers-kill-emacs)
563 "A list of commands that are allowed during completion.
564 If this is t, or if `company-begin-commands' is t, any command is allowed.
565 Otherwise, the value must be a list of symbols. If it starts with `not',
566 the cdr is the list of commands that abort completion. Otherwise, all
567 commands except those in that list, or in `company-begin-commands', or
568 commands in the `company-' namespace, abort completion."
569 :type '(choice (const :tag "Any command" t)
570 (cons :tag "Any except"
571 (const not)
572 (repeat :tag "Commands" function))
573 (repeat :tag "Commands" function)))
574
575 (defcustom company-show-numbers nil
576 "If enabled, show quick-access numbers for the first ten candidates."
577 :type '(choice (const :tag "off" nil)
578 (const :tag "on" t)))
579
580 (defcustom company-selection-wrap-around nil
581 "If enabled, selecting item before first or after last wraps around."
582 :type '(choice (const :tag "off" nil)
583 (const :tag "on" t)))
584
585 (defvar company-end-of-buffer-workaround t
586 "Work around a visualization bug when completing at the end of the buffer.
587 The work-around consists of adding a newline.")
588
589 (defvar company-async-wait 0.03
590 "Pause between checks to see if the value's been set when turning an
591 asynchronous call into synchronous.")
592
593 (defvar company-async-timeout 2
594 "Maximum wait time for a value to be set during asynchronous call.")
595
596 ;;; mode ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
597
598 (defvar company-mode-map (make-sparse-keymap)
599 "Keymap used by `company-mode'.")
600
601 (defvar company-active-map
602 (let ((keymap (make-sparse-keymap)))
603 (define-key keymap "\e\e\e" 'company-abort)
604 (define-key keymap "\C-g" 'company-abort)
605 (define-key keymap (kbd "M-n") 'company-select-next)
606 (define-key keymap (kbd "M-p") 'company-select-previous)
607 (define-key keymap (kbd "<down>") 'company-select-next-or-abort)
608 (define-key keymap (kbd "<up>") 'company-select-previous-or-abort)
609 (define-key keymap [down-mouse-1] 'ignore)
610 (define-key keymap [down-mouse-3] 'ignore)
611 (define-key keymap [mouse-1] 'company-complete-mouse)
612 (define-key keymap [mouse-3] 'company-select-mouse)
613 (define-key keymap [up-mouse-1] 'ignore)
614 (define-key keymap [up-mouse-3] 'ignore)
615 (define-key keymap [return] 'company-complete-selection)
616 (define-key keymap (kbd "RET") 'company-complete-selection)
617 (define-key keymap [tab] 'company-complete-common)
618 (define-key keymap (kbd "TAB") 'company-complete-common)
619 (define-key keymap (kbd "<f1>") 'company-show-doc-buffer)
620 (define-key keymap (kbd "C-h") 'company-show-doc-buffer)
621 (define-key keymap "\C-w" 'company-show-location)
622 (define-key keymap "\C-s" 'company-search-candidates)
623 (define-key keymap "\C-\M-s" 'company-filter-candidates)
624 (dotimes (i 10)
625 (define-key keymap (vector (+ (aref (kbd "M-0") 0) i))
626 `(lambda ()
627 (interactive)
628 (company-complete-number ,(if (zerop i) 10 i)))))
629
630 keymap)
631 "Keymap that is enabled during an active completion.")
632
633 (defvar company--disabled-backends nil)
634
635 (defun company-init-backend (backend)
636 (and (symbolp backend)
637 (not (fboundp backend))
638 (ignore-errors (require backend nil t)))
639 (cond
640 ((symbolp backend)
641 (condition-case err
642 (progn
643 (funcall backend 'init)
644 (put backend 'company-init t))
645 (error
646 (put backend 'company-init 'failed)
647 (unless (memq backend company--disabled-backends)
648 (message "Company back-end '%s' could not be initialized:\n%s"
649 backend (error-message-string err)))
650 (cl-pushnew backend company--disabled-backends)
651 nil)))
652 ;; No initialization for lambdas.
653 ((functionp backend) t)
654 (t ;; Must be a list.
655 (cl-dolist (b backend)
656 (unless (keywordp b)
657 (company-init-backend b))))))
658
659 (defvar company-default-lighter " company")
660
661 (defvar-local company-lighter company-default-lighter)
662
663 ;;;###autoload
664 (define-minor-mode company-mode
665 "\"complete anything\"; is an in-buffer completion framework.
666 Completion starts automatically, depending on the values
667 `company-idle-delay' and `company-minimum-prefix-length'.
668
669 Completion can be controlled with the commands:
670 `company-complete-common', `company-complete-selection', `company-complete',
671 `company-select-next', `company-select-previous'. If these commands are
672 called before `company-idle-delay', completion will also start.
673
674 Completions can be searched with `company-search-candidates' or
675 `company-filter-candidates'. These can be used while completion is
676 inactive, as well.
677
678 The completion data is retrieved using `company-backends' and displayed
679 using `company-frontends'. If you want to start a specific back-end, call
680 it interactively or use `company-begin-backend'.
681
682 regular keymap (`company-mode-map'):
683
684 \\{company-mode-map}
685 keymap during active completions (`company-active-map'):
686
687 \\{company-active-map}"
688 nil company-lighter company-mode-map
689 (if company-mode
690 (progn
691 (add-hook 'pre-command-hook 'company-pre-command nil t)
692 (add-hook 'post-command-hook 'company-post-command nil t)
693 (mapc 'company-init-backend company-backends))
694 (remove-hook 'pre-command-hook 'company-pre-command t)
695 (remove-hook 'post-command-hook 'company-post-command t)
696 (company-cancel)
697 (kill-local-variable 'company-point)))
698
699 (defcustom company-global-modes t
700 "Modes for which `company-mode' mode is turned on by `global-company-mode'.
701 If nil, means no modes. If t, then all major modes have it turned on.
702 If a list, it should be a list of `major-mode' symbol names for which
703 `company-mode' should be automatically turned on. The sense of the list is
704 negated if it begins with `not'. For example:
705 (c-mode c++-mode)
706 means that `company-mode' is turned on for buffers in C and C++ modes only.
707 (not message-mode)
708 means that `company-mode' is always turned on except in `message-mode' buffers."
709 :type '(choice (const :tag "none" nil)
710 (const :tag "all" t)
711 (set :menu-tag "mode specific" :tag "modes"
712 :value (not)
713 (const :tag "Except" not)
714 (repeat :inline t (symbol :tag "mode")))))
715
716 ;;;###autoload
717 (define-globalized-minor-mode global-company-mode company-mode company-mode-on)
718
719 (defun company-mode-on ()
720 (when (and (not (or noninteractive (eq (aref (buffer-name) 0) ?\s)))
721 (cond ((eq company-global-modes t)
722 t)
723 ((eq (car-safe company-global-modes) 'not)
724 (not (memq major-mode (cdr company-global-modes))))
725 (t (memq major-mode company-global-modes))))
726 (company-mode 1)))
727
728 (defsubst company-assert-enabled ()
729 (unless company-mode
730 (company-uninstall-map)
731 (error "Company not enabled")))
732
733 ;;; keymaps ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
734
735 (defvar-local company-my-keymap nil)
736
737 (defvar company-emulation-alist '((t . nil)))
738
739 (defsubst company-enable-overriding-keymap (keymap)
740 (company-uninstall-map)
741 (setq company-my-keymap keymap))
742
743 (defun company-ensure-emulation-alist ()
744 (unless (eq 'company-emulation-alist (car emulation-mode-map-alists))
745 (setq emulation-mode-map-alists
746 (cons 'company-emulation-alist
747 (delq 'company-emulation-alist emulation-mode-map-alists)))))
748
749 (defun company-install-map ()
750 (unless (or (cdar company-emulation-alist)
751 (null company-my-keymap))
752 (setf (cdar company-emulation-alist) company-my-keymap)))
753
754 (defun company-uninstall-map ()
755 (setf (cdar company-emulation-alist) nil))
756
757 ;; Hack:
758 ;; Emacs calculates the active keymaps before reading the event. That means we
759 ;; cannot change the keymap from a timer. So we send a bogus command.
760 ;; XXX: Seems not to be needed anymore in Emacs 24.4
761 (defun company-ignore ()
762 (interactive)
763 (setq this-command last-command))
764
765 (global-set-key '[31415926] 'company-ignore)
766
767 (defun company-input-noop ()
768 (push 31415926 unread-command-events))
769
770 (defun company--column (&optional pos)
771 (save-excursion
772 (when pos (goto-char pos))
773 (save-restriction
774 (+ (save-excursion
775 (vertical-motion 0)
776 (narrow-to-region (point) (point-max))
777 (let ((prefix (get-text-property (point) 'line-prefix)))
778 (if prefix (length prefix) 0)))
779 (current-column)))))
780
781 (defun company--row (&optional pos)
782 (save-excursion
783 (when pos (goto-char pos))
784 (count-screen-lines (window-start)
785 (progn (vertical-motion 0) (point)))))
786
787 ;;; backends ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
788
789 (defvar-local company-backend nil)
790
791 (defun company-grab (regexp &optional expression limit)
792 (when (looking-back regexp limit)
793 (or (match-string-no-properties (or expression 0)) "")))
794
795 (defun company-grab-line (regexp &optional expression)
796 (company-grab regexp expression (point-at-bol)))
797
798 (defun company-grab-symbol ()
799 (if (looking-at "\\_>")
800 (buffer-substring (point) (save-excursion (skip-syntax-backward "w_")
801 (point)))
802 (unless (and (char-after) (memq (char-syntax (char-after)) '(?w ?_)))
803 "")))
804
805 (defun company-grab-word ()
806 (if (looking-at "\\>")
807 (buffer-substring (point) (save-excursion (skip-syntax-backward "w")
808 (point)))
809 (unless (and (char-after) (eq (char-syntax (char-after)) ?w))
810 "")))
811
812 (defun company-grab-symbol-cons (idle-begin-after-re &optional max-len)
813 (let ((symbol (company-grab-symbol)))
814 (when symbol
815 (save-excursion
816 (forward-char (- (length symbol)))
817 (if (looking-back idle-begin-after-re (if max-len
818 (- (point) max-len)
819 (line-beginning-position)))
820 (cons symbol t)
821 symbol)))))
822
823 (defun company-in-string-or-comment ()
824 (let ((ppss (syntax-ppss)))
825 (or (car (setq ppss (nthcdr 3 ppss)))
826 (car (setq ppss (cdr ppss)))
827 (nth 3 ppss))))
828
829 (defun company-call-backend (&rest args)
830 (company--force-sync #'company-call-backend-raw args company-backend))
831
832 (defun company--force-sync (fun args backend)
833 (let ((value (apply fun args)))
834 (if (not (eq (car-safe value) :async))
835 value
836 (let ((res 'trash)
837 (start (time-to-seconds)))
838 (funcall (cdr value)
839 (lambda (result) (setq res result)))
840 (while (eq res 'trash)
841 (if (> (- (time-to-seconds) start) company-async-timeout)
842 (error "Company: Back-end %s async timeout with args %s"
843 backend args)
844 (sleep-for company-async-wait)))
845 res))))
846
847 (defun company-call-backend-raw (&rest args)
848 (condition-case err
849 (if (functionp company-backend)
850 (apply company-backend args)
851 (apply #'company--multi-backend-adapter company-backend args))
852 (error (error "Company: Back-end %s error \"%s\" with args %s"
853 company-backend (error-message-string err) args))))
854
855 (defun company--multi-backend-adapter (backends command &rest args)
856 (let ((backends (cl-loop for b in backends
857 when (not (and (symbolp b)
858 (eq 'failed (get b 'company-init))))
859 collect b)))
860 (setq backends
861 (if (eq command 'prefix)
862 (butlast backends (length (member :with backends)))
863 (delq :with backends)))
864 (pcase command
865 (`candidates
866 (company--multi-backend-adapter-candidates backends (car args)))
867 (`sorted nil)
868 (`duplicates t)
869 ((or `prefix `ignore-case `no-cache `require-match)
870 (let (value)
871 (cl-dolist (backend backends)
872 (when (setq value (company--force-sync
873 backend (cons command args) backend))
874 (cl-return value)))))
875 (_
876 (let ((arg (car args)))
877 (when (> (length arg) 0)
878 (let ((backend (or (get-text-property 0 'company-backend arg)
879 (car backends))))
880 (apply backend command args))))))))
881
882 (defun company--multi-backend-adapter-candidates (backends prefix)
883 (let ((pairs (cl-loop for backend in (cdr backends)
884 when (equal (company--prefix-str
885 (funcall backend 'prefix))
886 prefix)
887 collect (cons (funcall backend 'candidates prefix)
888 (let ((b backend))
889 (lambda (candidates)
890 (mapcar
891 (lambda (str)
892 (propertize str 'company-backend b))
893 candidates)))))))
894 (when (equal (company--prefix-str (funcall (car backends) 'prefix)) prefix)
895 ;; Small perf optimization: don't tag the candidates received
896 ;; from the first backend in the group.
897 (push (cons (funcall (car backends) 'candidates prefix)
898 'identity)
899 pairs))
900 (company--merge-async pairs (lambda (values) (apply #'append values)))))
901
902 (defun company--merge-async (pairs merger)
903 (let ((async (cl-loop for pair in pairs
904 thereis
905 (eq :async (car-safe (car pair))))))
906 (if (not async)
907 (funcall merger (cl-loop for (val . mapper) in pairs
908 collect (funcall mapper val)))
909 (cons
910 :async
911 (lambda (callback)
912 (let* (lst pending
913 (finisher (lambda ()
914 (unless pending
915 (funcall callback
916 (funcall merger
917 (nreverse lst)))))))
918 (dolist (pair pairs)
919 (let ((val (car pair))
920 (mapper (cdr pair)))
921 (if (not (eq :async (car-safe val)))
922 (push (funcall mapper val) lst)
923 (push nil lst)
924 (let ((cell lst)
925 (fetcher (cdr val)))
926 (push fetcher pending)
927 (funcall fetcher
928 (lambda (res)
929 (setq pending (delq fetcher pending))
930 (setcar cell (funcall mapper res))
931 (funcall finisher)))))))))))))
932
933 (defun company--prefix-str (prefix)
934 (or (car-safe prefix) prefix))
935
936 ;;; completion mechanism ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
937
938 (defvar-local company-prefix nil)
939
940 (defvar-local company-candidates nil)
941
942 (defvar-local company-candidates-length nil)
943
944 (defvar-local company-candidates-cache nil)
945
946 (defvar-local company-candidates-predicate nil)
947
948 (defvar-local company-common nil)
949
950 (defvar-local company-selection 0)
951
952 (defvar-local company-selection-changed nil)
953
954 (defvar-local company--manual-action nil
955 "Non-nil, if manual completion took place.")
956
957 (defvar-local company--manual-prefix nil)
958
959 (defvar company--auto-completion nil
960 "Non-nil when current candidate is being inserted automatically.
961 Controlled by `company-auto-complete'.")
962
963 (defvar-local company--point-max nil)
964
965 (defvar-local company-point nil)
966
967 (defvar company-timer nil)
968
969 (defvar-local company-added-newline nil)
970
971 (defsubst company-strip-prefix (str)
972 (substring str (length company-prefix)))
973
974 (defun company--insert-candidate (candidate)
975 (setq candidate (substring-no-properties candidate))
976 ;; XXX: Return value we check here is subject to change.
977 (if (eq (company-call-backend 'ignore-case) 'keep-prefix)
978 (insert (company-strip-prefix candidate))
979 (delete-region (- (point) (length company-prefix)) (point))
980 (insert candidate)))
981
982 (defmacro company-with-candidate-inserted (candidate &rest body)
983 "Evaluate BODY with CANDIDATE temporarily inserted.
984 This is a tool for back-ends that need candidates inserted before they
985 can retrieve meta-data for them."
986 (declare (indent 1))
987 `(let ((inhibit-modification-hooks t)
988 (inhibit-point-motion-hooks t)
989 (modified-p (buffer-modified-p)))
990 (company--insert-candidate ,candidate)
991 (unwind-protect
992 (progn ,@body)
993 (delete-region company-point (point)))))
994
995 (defun company-explicit-action-p ()
996 "Return whether explicit completion action was taken by the user."
997 (or company--manual-action
998 company-selection-changed))
999
1000 (defun company-reformat (candidate)
1001 ;; company-ispell needs this, because the results are always lower-case
1002 ;; It's mory efficient to fix it only when they are displayed.
1003 ;; FIXME: Adopt the current text's capitalization instead?
1004 (if (eq (company-call-backend 'ignore-case) 'keep-prefix)
1005 (concat company-prefix (substring candidate (length company-prefix)))
1006 candidate))
1007
1008 (defun company--should-complete ()
1009 (and (eq company-idle-delay t)
1010 (not (or buffer-read-only overriding-terminal-local-map
1011 overriding-local-map))
1012 ;; Check if in the middle of entering a key combination.
1013 (or (equal (this-command-keys-vector) [])
1014 (not (keymapp (key-binding (this-command-keys-vector)))))
1015 (not (and transient-mark-mode mark-active))))
1016
1017 (defun company--should-continue ()
1018 (or (eq t company-begin-commands)
1019 (eq t company-continue-commands)
1020 (if (eq 'not (car company-continue-commands))
1021 (not (memq this-command (cdr company-continue-commands)))
1022 (or (memq this-command company-begin-commands)
1023 (memq this-command company-continue-commands)
1024 (and (symbolp this-command)
1025 (string-match-p "\\`company-" (symbol-name this-command)))))))
1026
1027 (defun company-call-frontends (command)
1028 (dolist (frontend company-frontends)
1029 (condition-case err
1030 (funcall frontend command)
1031 (error (error "Company: Front-end %s error \"%s\" on command %s"
1032 frontend (error-message-string err) command)))))
1033
1034 (defun company-set-selection (selection &optional force-update)
1035 (setq selection
1036 (if company-selection-wrap-around
1037 (mod selection company-candidates-length)
1038 (max 0 (min (1- company-candidates-length) selection))))
1039 (when (or force-update (not (equal selection company-selection)))
1040 (company--update-group-lighter (nth selection company-candidates))
1041 (setq company-selection selection
1042 company-selection-changed t)
1043 (company-call-frontends 'update)))
1044
1045 (defun company--update-group-lighter (candidate)
1046 (when (listp company-backend)
1047 (let ((backend (or (get-text-property 0 'company-backend candidate)
1048 (car company-backend))))
1049 (when (and backend (symbolp backend))
1050 (let ((name (replace-regexp-in-string "company-\\|-company" ""
1051 (symbol-name backend))))
1052 (setq company-lighter (format " company-<%s>" name)))))))
1053
1054 (defun company-apply-predicate (candidates predicate)
1055 (let (new)
1056 (dolist (c candidates)
1057 (when (funcall predicate c)
1058 (push c new)))
1059 (nreverse new)))
1060
1061 (defun company-update-candidates (candidates)
1062 (setq company-candidates-length (length candidates))
1063 (if (> company-selection 0)
1064 ;; Try to restore the selection
1065 (let ((selected (nth company-selection company-candidates)))
1066 (setq company-selection 0
1067 company-candidates candidates)
1068 (when selected
1069 (while (and candidates (string< (pop candidates) selected))
1070 (cl-incf company-selection))
1071 (unless candidates
1072 ;; Make sure selection isn't out of bounds.
1073 (setq company-selection (min (1- company-candidates-length)
1074 company-selection)))))
1075 (setq company-selection 0
1076 company-candidates candidates))
1077 ;; Save in cache:
1078 (push (cons company-prefix company-candidates) company-candidates-cache)
1079 ;; Calculate common.
1080 (let ((completion-ignore-case (company-call-backend 'ignore-case)))
1081 ;; We want to support non-prefix completion, so filtering is the
1082 ;; responsibility of each respective backend, not ours.
1083 ;; On the other hand, we don't want to replace non-prefix input in
1084 ;; `company-complete-common'.
1085 (setq company-common
1086 (if (cdr company-candidates)
1087 (let ((common (try-completion company-prefix company-candidates)))
1088 (if (eq common t)
1089 ;; Mulple equal strings, probably with different
1090 ;; annotations.
1091 company-prefix
1092 common))
1093 (car company-candidates)))))
1094
1095 (defun company-calculate-candidates (prefix)
1096 (let ((candidates (cdr (assoc prefix company-candidates-cache)))
1097 (ignore-case (company-call-backend 'ignore-case)))
1098 (or candidates
1099 (when company-candidates-cache
1100 (let ((len (length prefix))
1101 (completion-ignore-case ignore-case)
1102 prev)
1103 (cl-dotimes (i (1+ len))
1104 (when (setq prev (cdr (assoc (substring prefix 0 (- len i))
1105 company-candidates-cache)))
1106 (setq candidates (all-completions prefix prev))
1107 (cl-return t)))))
1108 ;; no cache match, call back-end
1109 (setq candidates
1110 (company--process-candidates
1111 (company--fetch-candidates prefix))))
1112 (setq candidates (company--transform-candidates candidates))
1113 (when candidates
1114 (if (or (cdr candidates)
1115 (not (eq t (compare-strings (car candidates) nil nil
1116 prefix nil nil ignore-case))))
1117 candidates
1118 ;; Already completed and unique; don't start.
1119 t))))
1120
1121 (defun company--fetch-candidates (prefix)
1122 (let ((c (if company--manual-action
1123 (company-call-backend 'candidates prefix)
1124 (company-call-backend-raw 'candidates prefix)))
1125 res)
1126 (if (not (eq (car c) :async))
1127 c
1128 (let ((buf (current-buffer))
1129 (win (selected-window))
1130 (tick (buffer-chars-modified-tick))
1131 (pt (point))
1132 (backend company-backend))
1133 (funcall
1134 (cdr c)
1135 (lambda (candidates)
1136 (if (not (and candidates (eq res 'done)))
1137 ;; Fetcher called us back right away.
1138 (setq res candidates)
1139 (setq company-backend backend
1140 company-candidates-cache
1141 (list (cons prefix
1142 (company--process-candidates
1143 candidates))))
1144 (company-idle-begin buf win tick pt)))))
1145 ;; FIXME: Relying on the fact that the callers
1146 ;; will interpret nil as "do nothing" is shaky.
1147 ;; A throw-catch would be one possible improvement.
1148 (or res
1149 (progn (setq res 'done) nil)))))
1150
1151 (defun company--process-candidates (candidates)
1152 (when company-candidates-predicate
1153 (setq candidates
1154 (company-apply-predicate candidates
1155 company-candidates-predicate)))
1156 (unless (company-call-backend 'sorted)
1157 (setq candidates (sort candidates 'string<)))
1158 (when (company-call-backend 'duplicates)
1159 (company--strip-duplicates candidates))
1160 candidates)
1161
1162 (defun company--strip-duplicates (candidates)
1163 (let ((c2 candidates))
1164 (while c2
1165 (setcdr c2
1166 (let ((str (car c2))
1167 (anno 'unk))
1168 (pop c2)
1169 (while (let ((str2 (car c2)))
1170 (if (not (equal str str2))
1171 nil
1172 (when (eq anno 'unk)
1173 (setq anno (company-call-backend
1174 'annotation str)))
1175 (equal anno
1176 (company-call-backend
1177 'annotation str2))))
1178 (pop c2))
1179 c2)))))
1180
1181 (defun company--transform-candidates (candidates)
1182 (let ((c candidates))
1183 (dolist (tr company-transformers)
1184 (setq c (funcall tr c)))
1185 c))
1186
1187 (defun company-sort-by-occurrence (candidates)
1188 "Sort CANDIDATES according to their occurrences.
1189 Searches for each in the currently visible part of the current buffer and
1190 gives priority to the closest ones above point, then closest ones below
1191 point. The rest of the list is appended unchanged.
1192 Keywords and function definition names are ignored."
1193 (let* (occurs
1194 (noccurs
1195 (cl-delete-if
1196 (lambda (candidate)
1197 (when (or
1198 (save-excursion
1199 (progn (forward-char (- (length company-prefix)))
1200 (search-backward candidate (window-start) t)))
1201 (save-excursion
1202 (search-forward candidate (window-end) t)))
1203 (let ((beg (match-beginning 0))
1204 (end (match-end 0)))
1205 (when (save-excursion
1206 (goto-char end)
1207 (and (not (memq (get-text-property (point) 'face)
1208 '(font-lock-function-name-face
1209 font-lock-keyword-face)))
1210 (let ((prefix (company--prefix-str
1211 (company-call-backend 'prefix))))
1212 (and (stringp prefix)
1213 (= (length prefix) (- end beg))))))
1214 (push (cons candidate (if (< beg (point))
1215 (- (point) end)
1216 (- beg (window-start))))
1217 occurs)
1218 t))))
1219 candidates)))
1220 (nconc
1221 (mapcar #'car (sort occurs (lambda (e1 e2) (<= (cdr e1) (cdr e2)))))
1222 noccurs)))
1223
1224 (defun company-sort-by-backend-importance (candidates)
1225 "Sort CANDIDATES as two priority groups.
1226 If `company-backend' is a function, do nothing. If it's a list, move
1227 candidates from back-ends before keyword `:with' to the front. Candidates
1228 from the rest of the back-ends in the group, if any, will be left at the end."
1229 (if (functionp company-backend)
1230 candidates
1231 (let ((low-priority (cdr (memq :with company-backend))))
1232 (if (null low-priority)
1233 candidates
1234 (sort candidates
1235 (lambda (c1 c2)
1236 (and
1237 (let ((b2 (get-text-property 0 'company-backend c2)))
1238 (and b2 (memq b2 low-priority)))
1239 (let ((b1 (get-text-property 0 'company-backend c1)))
1240 (or (not b1) (not (memq b1 low-priority)))))))))))
1241
1242 (defun company-idle-begin (buf win tick pos)
1243 (and (eq buf (current-buffer))
1244 (eq win (selected-window))
1245 (eq tick (buffer-chars-modified-tick))
1246 (eq pos (point))
1247 (when (company-auto-begin)
1248 (when (version< emacs-version "24.3.50")
1249 (company-input-noop))
1250 (company-post-command))))
1251
1252 (defun company-auto-begin ()
1253 (and company-mode
1254 (not company-candidates)
1255 (let ((company-idle-delay t))
1256 (condition-case-unless-debug err
1257 (company--perform)
1258 (error (message "Company: An error occurred in auto-begin")
1259 (message "%s" (error-message-string err))
1260 (company-cancel))
1261 (quit (company-cancel)))))
1262 (unless company-candidates
1263 (setq company-backend nil))
1264 ;; Return non-nil if active.
1265 company-candidates)
1266
1267 (defun company-manual-begin ()
1268 (interactive)
1269 (company-assert-enabled)
1270 (setq company--manual-action t)
1271 (unwind-protect
1272 (let ((company-minimum-prefix-length 0))
1273 (company-auto-begin))
1274 (unless company-candidates
1275 (setq company--manual-action nil))))
1276
1277 (defun company-other-backend (&optional backward)
1278 (interactive (list current-prefix-arg))
1279 (company-assert-enabled)
1280 (let* ((after (if company-backend
1281 (cdr (member company-backend company-backends))
1282 company-backends))
1283 (before (cdr (member company-backend (reverse company-backends))))
1284 (next (if backward
1285 (append before (reverse after))
1286 (append after (reverse before)))))
1287 (company-cancel)
1288 (cl-dolist (backend next)
1289 (when (ignore-errors (company-begin-backend backend))
1290 (cl-return t))))
1291 (unless company-candidates
1292 (error "No other back-end")))
1293
1294 (defun company-require-match-p ()
1295 (let ((backend-value (company-call-backend 'require-match)))
1296 (or (eq backend-value t)
1297 (and (not (eq backend-value 'never))
1298 (if (functionp company-require-match)
1299 (funcall company-require-match)
1300 (eq company-require-match t))))))
1301
1302 (defun company-auto-complete-p (input)
1303 "Return non-nil, if input starts with punctuation or parentheses."
1304 (and (if (functionp company-auto-complete)
1305 (funcall company-auto-complete)
1306 company-auto-complete)
1307 (if (functionp company-auto-complete-chars)
1308 (funcall company-auto-complete-chars input)
1309 (if (consp company-auto-complete-chars)
1310 (memq (char-syntax (string-to-char input))
1311 company-auto-complete-chars)
1312 (string-match (substring input 0 1) company-auto-complete-chars)))))
1313
1314 (defun company--incremental-p ()
1315 (and (> (point) company-point)
1316 (> (point-max) company--point-max)
1317 (not (eq this-command 'backward-delete-char-untabify))
1318 (equal (buffer-substring (- company-point (length company-prefix))
1319 company-point)
1320 company-prefix)))
1321
1322 (defun company--continue-failed ()
1323 (let ((input (buffer-substring-no-properties (point) company-point)))
1324 (cond
1325 ((company-auto-complete-p input)
1326 ;; auto-complete
1327 (save-excursion
1328 (goto-char company-point)
1329 (let ((company--auto-completion t))
1330 (company-complete-selection))
1331 nil))
1332 ((company-require-match-p)
1333 ;; wrong incremental input, but required match
1334 (delete-char (- (length input)))
1335 (ding)
1336 (message "Matching input is required")
1337 company-candidates)
1338 ((equal company-prefix (car company-candidates))
1339 ;; last input was actually success
1340 (company-cancel company-prefix))
1341 (t (company-cancel)))))
1342
1343 (defun company--good-prefix-p (prefix)
1344 (and (stringp (company--prefix-str prefix)) ;excludes 'stop
1345 (or (eq (cdr-safe prefix) t)
1346 (let ((len (or (cdr-safe prefix) (length prefix))))
1347 (if company--manual-prefix
1348 (or (not company-abort-manual-when-too-short)
1349 ;; Must not be less than minimum or initial length.
1350 (>= len (min company-minimum-prefix-length
1351 (length company--manual-prefix))))
1352 (>= len company-minimum-prefix-length))))))
1353
1354 (defun company--continue ()
1355 (when (company-call-backend 'no-cache company-prefix)
1356 ;; Don't complete existing candidates, fetch new ones.
1357 (setq company-candidates-cache nil))
1358 (let* ((new-prefix (company-call-backend 'prefix))
1359 (c (when (and (company--good-prefix-p new-prefix)
1360 (setq new-prefix (company--prefix-str new-prefix))
1361 (= (- (point) (length new-prefix))
1362 (- company-point (length company-prefix))))
1363 (company-calculate-candidates new-prefix))))
1364 (cond
1365 ((eq c t)
1366 ;; t means complete/unique.
1367 ;; Handle it like completion was aborted, to differentiate from user
1368 ;; calling one of Company's commands to insert the candidate.
1369 (company-cancel 'unique))
1370 ((consp c)
1371 ;; incremental match
1372 (setq company-prefix new-prefix)
1373 (company-update-candidates c)
1374 c)
1375 ((not (company--incremental-p))
1376 (company-cancel))
1377 (t (company--continue-failed)))))
1378
1379 (defun company--begin-new ()
1380 (let (prefix c)
1381 (cl-dolist (backend (if company-backend
1382 ;; prefer manual override
1383 (list company-backend)
1384 company-backends))
1385 (setq prefix
1386 (if (or (symbolp backend)
1387 (functionp backend))
1388 (when (or (not (symbolp backend))
1389 (eq t (get backend 'company-init))
1390 (unless (get backend 'company-init)
1391 (company-init-backend backend)))
1392 (funcall backend 'prefix))
1393 (company--multi-backend-adapter backend 'prefix)))
1394 (when prefix
1395 (when (company--good-prefix-p prefix)
1396 (setq company-prefix (company--prefix-str prefix)
1397 company-backend backend
1398 c (company-calculate-candidates company-prefix))
1399 ;; t means complete/unique. We don't start, so no hooks.
1400 (if (not (consp c))
1401 (when company--manual-action
1402 (message "No completion found"))
1403 (when company--manual-action
1404 (setq company--manual-prefix prefix))
1405 (if (symbolp backend)
1406 (setq company-lighter (concat " " (symbol-name backend)))
1407 (company--update-group-lighter (car c)))
1408 (company-update-candidates c)
1409 (run-hook-with-args 'company-completion-started-hook
1410 (company-explicit-action-p))
1411 (company-call-frontends 'show)))
1412 (cl-return c)))))
1413
1414 (defun company--perform ()
1415 (or (and company-candidates (company--continue))
1416 (and (company--should-complete) (company--begin-new)))
1417 (when company-candidates
1418 (let ((modified (buffer-modified-p)))
1419 (when (and company-end-of-buffer-workaround (eobp))
1420 (save-excursion (insert "\n"))
1421 (setq company-added-newline
1422 (or modified (buffer-chars-modified-tick)))))
1423 (setq company-point (point)
1424 company--point-max (point-max))
1425 (company-ensure-emulation-alist)
1426 (company-enable-overriding-keymap company-active-map)
1427 (company-call-frontends 'update)))
1428
1429 (defun company-cancel (&optional result)
1430 (and company-added-newline
1431 (> (point-max) (point-min))
1432 (let ((tick (buffer-chars-modified-tick)))
1433 (delete-region (1- (point-max)) (point-max))
1434 (equal tick company-added-newline))
1435 ;; Only set unmodified when tick remained the same since insert,
1436 ;; and the buffer wasn't modified before.
1437 (set-buffer-modified-p nil))
1438 (when company-prefix
1439 (if (stringp result)
1440 (progn
1441 (company-call-backend 'pre-completion result)
1442 (run-hook-with-args 'company-completion-finished-hook result)
1443 (company-call-backend 'post-completion result))
1444 (run-hook-with-args 'company-completion-cancelled-hook result)))
1445 (setq company-added-newline nil
1446 company-backend nil
1447 company-prefix nil
1448 company-candidates nil
1449 company-candidates-length nil
1450 company-candidates-cache nil
1451 company-candidates-predicate nil
1452 company-common nil
1453 company-selection 0
1454 company-selection-changed nil
1455 company--manual-action nil
1456 company--manual-prefix nil
1457 company-lighter company-default-lighter
1458 company--point-max nil
1459 company-point nil)
1460 (when company-timer
1461 (cancel-timer company-timer))
1462 (company-search-mode 0)
1463 (company-call-frontends 'hide)
1464 (company-enable-overriding-keymap nil)
1465 ;; Make return value explicit.
1466 nil)
1467
1468 (defun company-abort ()
1469 (interactive)
1470 (company-cancel t))
1471
1472 (defun company-finish (result)
1473 (company--insert-candidate result)
1474 (company-cancel result))
1475
1476 (defsubst company-keep (command)
1477 (and (symbolp command) (get command 'company-keep)))
1478
1479 (defun company-pre-command ()
1480 (unless (company-keep this-command)
1481 (condition-case err
1482 (when company-candidates
1483 (company-call-frontends 'pre-command)
1484 (unless (company--should-continue)
1485 (company-abort)))
1486 (error (message "Company: An error occurred in pre-command")
1487 (message "%s" (error-message-string err))
1488 (company-cancel))))
1489 (when company-timer
1490 (cancel-timer company-timer)
1491 (setq company-timer nil))
1492 (company-uninstall-map))
1493
1494 (defun company-post-command ()
1495 (unless (company-keep this-command)
1496 (condition-case err
1497 (progn
1498 (unless (equal (point) company-point)
1499 (company--perform))
1500 (if company-candidates
1501 (company-call-frontends 'post-command)
1502 (and (numberp company-idle-delay)
1503 (company--should-idle-begin)
1504 (setq company-timer
1505 (run-with-timer company-idle-delay nil
1506 'company-idle-begin
1507 (current-buffer) (selected-window)
1508 (buffer-chars-modified-tick) (point))))))
1509 (error (message "Company: An error occurred in post-command")
1510 (message "%s" (error-message-string err))
1511 (company-cancel))))
1512 (company-install-map))
1513
1514 (defvar company--begin-inhibit-commands '(company-abort
1515 company-complete-mouse
1516 company-complete
1517 company-complete-common
1518 company-complete-selection
1519 company-complete-number)
1520 "List of commands after which idle completion is (still) disabled when
1521 `company-begin-commands' is t.")
1522
1523 (defun company--should-idle-begin ()
1524 (if (eq t company-begin-commands)
1525 (not (memq this-command company--begin-inhibit-commands))
1526 (or
1527 (memq this-command company-begin-commands)
1528 (and (symbolp this-command) (get this-command 'company-begin)))))
1529
1530 ;;; search ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1531
1532 (defvar-local company-search-string nil)
1533
1534 (defvar-local company-search-lighter " Search: \"\"")
1535
1536 (defvar-local company-search-old-map nil)
1537
1538 (defvar-local company-search-old-selection 0)
1539
1540 (defun company-search (text lines)
1541 (let ((quoted (regexp-quote text))
1542 (i 0))
1543 (cl-dolist (line lines)
1544 (when (string-match quoted line (length company-prefix))
1545 (cl-return i))
1546 (cl-incf i))))
1547
1548 (defun company-search-printing-char ()
1549 (interactive)
1550 (company-search-assert-enabled)
1551 (setq company-search-string
1552 (concat (or company-search-string "") (string last-command-event))
1553 company-search-lighter (concat " Search: \"" company-search-string
1554 "\""))
1555 (let ((pos (company-search company-search-string
1556 (nthcdr company-selection company-candidates))))
1557 (if (null pos)
1558 (ding)
1559 (company-set-selection (+ company-selection pos) t))))
1560
1561 (defun company-search-repeat-forward ()
1562 "Repeat the incremental search in completion candidates forward."
1563 (interactive)
1564 (company-search-assert-enabled)
1565 (let ((pos (company-search company-search-string
1566 (cdr (nthcdr company-selection
1567 company-candidates)))))
1568 (if (null pos)
1569 (ding)
1570 (company-set-selection (+ company-selection pos 1) t))))
1571
1572 (defun company-search-repeat-backward ()
1573 "Repeat the incremental search in completion candidates backwards."
1574 (interactive)
1575 (company-search-assert-enabled)
1576 (let ((pos (company-search company-search-string
1577 (nthcdr (- company-candidates-length
1578 company-selection)
1579 (reverse company-candidates)))))
1580 (if (null pos)
1581 (ding)
1582 (company-set-selection (- company-selection pos 1) t))))
1583
1584 (defun company-create-match-predicate ()
1585 (setq company-candidates-predicate
1586 `(lambda (candidate)
1587 ,(if company-candidates-predicate
1588 `(and (string-match ,company-search-string candidate)
1589 (funcall ,company-candidates-predicate
1590 candidate))
1591 `(string-match ,company-search-string candidate))))
1592 (company-update-candidates
1593 (company-apply-predicate company-candidates company-candidates-predicate))
1594 ;; Invalidate cache.
1595 (setq company-candidates-cache (cons company-prefix company-candidates)))
1596
1597 (defun company-filter-printing-char ()
1598 (interactive)
1599 (company-search-assert-enabled)
1600 (company-search-printing-char)
1601 (company-create-match-predicate)
1602 (company-call-frontends 'update))
1603
1604 (defun company-search-kill-others ()
1605 "Limit the completion candidates to the ones matching the search string."
1606 (interactive)
1607 (company-search-assert-enabled)
1608 (company-create-match-predicate)
1609 (company-search-mode 0)
1610 (company-call-frontends 'update))
1611
1612 (defun company-search-abort ()
1613 "Abort searching the completion candidates."
1614 (interactive)
1615 (company-search-assert-enabled)
1616 (company-set-selection company-search-old-selection t)
1617 (company-search-mode 0))
1618
1619 (defun company-search-other-char ()
1620 (interactive)
1621 (company-search-assert-enabled)
1622 (company-search-mode 0)
1623 (company--unread-last-input))
1624
1625 (defvar company-search-map
1626 (let ((i 0)
1627 (keymap (make-keymap)))
1628 (if (fboundp 'max-char)
1629 (set-char-table-range (nth 1 keymap) (cons #x100 (max-char))
1630 'company-search-printing-char)
1631 (with-no-warnings
1632 ;; obsolete in Emacs 23
1633 (let ((l (generic-character-list))
1634 (table (nth 1 keymap)))
1635 (while l
1636 (set-char-table-default table (car l) 'company-search-printing-char)
1637 (setq l (cdr l))))))
1638 (define-key keymap [t] 'company-search-other-char)
1639 (while (< i ?\s)
1640 (define-key keymap (make-string 1 i) 'company-search-other-char)
1641 (cl-incf i))
1642 (while (< i 256)
1643 (define-key keymap (vector i) 'company-search-printing-char)
1644 (cl-incf i))
1645 (let ((meta-map (make-sparse-keymap)))
1646 (define-key keymap (char-to-string meta-prefix-char) meta-map)
1647 (define-key keymap [escape] meta-map))
1648 (define-key keymap (vector meta-prefix-char t) 'company-search-other-char)
1649 (define-key keymap "\e\e\e" 'company-search-other-char)
1650 (define-key keymap [escape escape escape] 'company-search-other-char)
1651 (define-key keymap (kbd "DEL") 'company-search-other-char)
1652
1653 (define-key keymap "\C-g" 'company-search-abort)
1654 (define-key keymap "\C-s" 'company-search-repeat-forward)
1655 (define-key keymap "\C-r" 'company-search-repeat-backward)
1656 (define-key keymap "\C-o" 'company-search-kill-others)
1657 keymap)
1658 "Keymap used for incrementally searching the completion candidates.")
1659
1660 (define-minor-mode company-search-mode
1661 "Search mode for completion candidates.
1662 Don't start this directly, use `company-search-candidates' or
1663 `company-filter-candidates'."
1664 nil company-search-lighter nil
1665 (if company-search-mode
1666 (if (company-manual-begin)
1667 (progn
1668 (setq company-search-old-selection company-selection)
1669 (company-call-frontends 'update))
1670 (setq company-search-mode nil))
1671 (kill-local-variable 'company-search-string)
1672 (kill-local-variable 'company-search-lighter)
1673 (kill-local-variable 'company-search-old-selection)
1674 (company-enable-overriding-keymap company-active-map)))
1675
1676 (defun company-search-assert-enabled ()
1677 (company-assert-enabled)
1678 (unless company-search-mode
1679 (company-uninstall-map)
1680 (error "Company not in search mode")))
1681
1682 (defun company-search-candidates ()
1683 "Start searching the completion candidates incrementally.
1684
1685 \\<company-search-map>Search can be controlled with the commands:
1686 - `company-search-repeat-forward' (\\[company-search-repeat-forward])
1687 - `company-search-repeat-backward' (\\[company-search-repeat-backward])
1688 - `company-search-abort' (\\[company-search-abort])
1689
1690 Regular characters are appended to the search string.
1691
1692 The command `company-search-kill-others' (\\[company-search-kill-others])
1693 uses the search string to limit the completion candidates."
1694 (interactive)
1695 (company-search-mode 1)
1696 (company-enable-overriding-keymap company-search-map))
1697
1698 (defvar company-filter-map
1699 (let ((keymap (make-keymap)))
1700 (define-key keymap [remap company-search-printing-char]
1701 'company-filter-printing-char)
1702 (set-keymap-parent keymap company-search-map)
1703 keymap)
1704 "Keymap used for incrementally searching the completion candidates.")
1705
1706 (defun company-filter-candidates ()
1707 "Start filtering the completion candidates incrementally.
1708 This works the same way as `company-search-candidates' immediately
1709 followed by `company-search-kill-others' after each input."
1710 (interactive)
1711 (company-search-mode 1)
1712 (company-enable-overriding-keymap company-filter-map))
1713
1714 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1715
1716 (defun company-select-next ()
1717 "Select the next candidate in the list."
1718 (interactive)
1719 (when (company-manual-begin)
1720 (company-set-selection (1+ company-selection))))
1721
1722 (defun company-select-previous ()
1723 "Select the previous candidate in the list."
1724 (interactive)
1725 (when (company-manual-begin)
1726 (company-set-selection (1- company-selection))))
1727
1728 (defun company-select-next-or-abort ()
1729 "Select the next candidate if more than one, else abort
1730 and invoke the normal binding."
1731 (interactive)
1732 (if (> company-candidates-length 1)
1733 (company-select-next)
1734 (company-abort)
1735 (company--unread-last-input)))
1736
1737 (defun company-select-previous-or-abort ()
1738 "Select the previous candidate if more than one, else abort
1739 and invoke the normal binding."
1740 (interactive)
1741 (if (> company-candidates-length 1)
1742 (company-select-previous)
1743 (company-abort)
1744 (company--unread-last-input)))
1745
1746 (defvar company-pseudo-tooltip-overlay)
1747
1748 (defvar company-tooltip-offset)
1749
1750 (defun company--inside-tooltip-p (event-col-row row height)
1751 (let* ((ovl company-pseudo-tooltip-overlay)
1752 (column (overlay-get ovl 'company-column))
1753 (width (overlay-get ovl 'company-width))
1754 (evt-col (car event-col-row))
1755 (evt-row (cdr event-col-row)))
1756 (and (>= evt-col column)
1757 (< evt-col (+ column width))
1758 (if (> height 0)
1759 (and (> evt-row row)
1760 (<= evt-row (+ row height) ))
1761 (and (< evt-row row)
1762 (>= evt-row (+ row height)))))))
1763
1764 (defun company--event-col-row (event)
1765 (let* ((col-row (posn-actual-col-row (event-start event)))
1766 (col (car col-row))
1767 (row (cdr col-row)))
1768 (cl-incf col (window-hscroll))
1769 (and header-line-format
1770 (version< "24" emacs-version)
1771 (cl-decf row))
1772 (cons col row)))
1773
1774 (defun company-select-mouse (event)
1775 "Select the candidate picked by the mouse."
1776 (interactive "e")
1777 (let ((event-col-row (company--event-col-row event))
1778 (ovl-row (company--row))
1779 (ovl-height (and company-pseudo-tooltip-overlay
1780 (min (overlay-get company-pseudo-tooltip-overlay
1781 'company-height)
1782 company-candidates-length))))
1783 (if (and ovl-height
1784 (company--inside-tooltip-p event-col-row ovl-row ovl-height))
1785 (progn
1786 (company-set-selection (+ (cdr event-col-row)
1787 (1- company-tooltip-offset)
1788 (if (and (eq company-tooltip-offset-display 'lines)
1789 (not (zerop company-tooltip-offset)))
1790 -1 0)
1791 (- ovl-row)
1792 (if (< ovl-height 0)
1793 (- 1 ovl-height)
1794 0)))
1795 t)
1796 (company-abort)
1797 (company--unread-last-input)
1798 nil)))
1799
1800 (defun company-complete-mouse (event)
1801 "Insert the candidate picked by the mouse."
1802 (interactive "e")
1803 (when (company-select-mouse event)
1804 (company-complete-selection)))
1805
1806 (defun company-complete-selection ()
1807 "Insert the selected candidate."
1808 (interactive)
1809 (when (company-manual-begin)
1810 (let ((result (nth company-selection company-candidates)))
1811 (company-finish result))))
1812
1813 (defun company-complete-common ()
1814 "Insert the common part of all candidates."
1815 (interactive)
1816 (when (company-manual-begin)
1817 (if (and (not (cdr company-candidates))
1818 (equal company-common (car company-candidates)))
1819 (company-complete-selection)
1820 (when company-common
1821 (company--insert-candidate company-common)))))
1822
1823 (defun company-complete ()
1824 "Insert the common part of all candidates or the current selection.
1825 The first time this is called, the common part is inserted, the second
1826 time, or when the selection has been changed, the selected candidate is
1827 inserted."
1828 (interactive)
1829 (when (company-manual-begin)
1830 (if (or company-selection-changed
1831 (eq last-command 'company-complete-common))
1832 (call-interactively 'company-complete-selection)
1833 (call-interactively 'company-complete-common)
1834 (setq this-command 'company-complete-common))))
1835
1836 (defun company-complete-number (n)
1837 "Insert the Nth candidate.
1838 To show the number next to the candidates in some back-ends, enable
1839 `company-show-numbers'."
1840 (when (company-manual-begin)
1841 (and (or (< n 1) (> n company-candidates-length))
1842 (error "No candidate number %d" n))
1843 (cl-decf n)
1844 (company-finish (nth n company-candidates))))
1845
1846 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1847
1848 (defconst company-space-strings-limit 100)
1849
1850 (defconst company-space-strings
1851 (let (lst)
1852 (dotimes (i company-space-strings-limit)
1853 (push (make-string (- company-space-strings-limit 1 i) ?\ ) lst))
1854 (apply 'vector lst)))
1855
1856 (defun company-space-string (len)
1857 (if (< len company-space-strings-limit)
1858 (aref company-space-strings len)
1859 (make-string len ?\ )))
1860
1861 (defun company-safe-substring (str from &optional to)
1862 (if (> from (string-width str))
1863 ""
1864 (with-temp-buffer
1865 (insert str)
1866 (move-to-column from)
1867 (let ((beg (point)))
1868 (if to
1869 (progn
1870 (move-to-column to)
1871 (concat (buffer-substring beg (point))
1872 (let ((padding (- to (current-column))))
1873 (when (> padding 0)
1874 (company-space-string padding)))))
1875 (buffer-substring beg (point-max)))))))
1876
1877 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1878
1879 (defvar-local company-last-metadata nil)
1880
1881 (defun company-fetch-metadata ()
1882 (let ((selected (nth company-selection company-candidates)))
1883 (unless (eq selected (car company-last-metadata))
1884 (setq company-last-metadata
1885 (cons selected (company-call-backend 'meta selected))))
1886 (cdr company-last-metadata)))
1887
1888 (defun company-doc-buffer (&optional string)
1889 (with-current-buffer (get-buffer-create "*company-documentation*")
1890 (erase-buffer)
1891 (when string
1892 (save-excursion
1893 (insert string)))
1894 (current-buffer)))
1895
1896 (defvar company--electric-commands
1897 '(scroll-other-window scroll-other-window-down)
1898 "List of Commands that won't break out of electric commands.")
1899
1900 (defmacro company--electric-do (&rest body)
1901 (declare (indent 0) (debug t))
1902 `(when (company-manual-begin)
1903 (save-window-excursion
1904 (let ((height (window-height))
1905 (row (company--row))
1906 cmd)
1907 ,@body
1908 (and (< (window-height) height)
1909 (< (- (window-height) row 2) company-tooltip-limit)
1910 (recenter (- (window-height) row 2)))
1911 (while (memq (setq cmd (key-binding (vector (list (read-event)))))
1912 company--electric-commands)
1913 (call-interactively cmd))
1914 (company--unread-last-input)))))
1915
1916 (defun company--unread-last-input ()
1917 (when last-input-event
1918 (clear-this-command-keys t)
1919 (setq unread-command-events (list last-input-event))))
1920
1921 (defun company-show-doc-buffer ()
1922 "Temporarily show the documentation buffer for the selection."
1923 (interactive)
1924 (company--electric-do
1925 (let* ((selected (nth company-selection company-candidates))
1926 (doc-buffer (or (company-call-backend 'doc-buffer selected)
1927 (error "No documentation available"))))
1928 (with-current-buffer doc-buffer
1929 (goto-char (point-min)))
1930 (display-buffer doc-buffer t))))
1931 (put 'company-show-doc-buffer 'company-keep t)
1932
1933 (defun company-show-location ()
1934 "Temporarily display a buffer showing the selected candidate in context."
1935 (interactive)
1936 (company--electric-do
1937 (let* ((selected (nth company-selection company-candidates))
1938 (location (company-call-backend 'location selected))
1939 (pos (or (cdr location) (error "No location available")))
1940 (buffer (or (and (bufferp (car location)) (car location))
1941 (find-file-noselect (car location) t))))
1942 (with-selected-window (display-buffer buffer t)
1943 (save-restriction
1944 (widen)
1945 (if (bufferp (car location))
1946 (goto-char pos)
1947 (goto-char (point-min))
1948 (forward-line (1- pos))))
1949 (set-window-start nil (point))))))
1950 (put 'company-show-location 'company-keep t)
1951
1952 ;;; package functions ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1953
1954 (defvar-local company-callback nil)
1955
1956 (defun company-remove-callback (&optional ignored)
1957 (remove-hook 'company-completion-finished-hook company-callback t)
1958 (remove-hook 'company-completion-cancelled-hook 'company-remove-callback t)
1959 (remove-hook 'company-completion-finished-hook 'company-remove-callback t))
1960
1961 (defun company-begin-backend (backend &optional callback)
1962 "Start a completion at point using BACKEND."
1963 (interactive (let ((val (completing-read "Company back-end: "
1964 obarray
1965 'functionp nil "company-")))
1966 (when val
1967 (list (intern val)))))
1968 (when (setq company-callback callback)
1969 (add-hook 'company-completion-finished-hook company-callback nil t))
1970 (add-hook 'company-completion-cancelled-hook 'company-remove-callback nil t)
1971 (add-hook 'company-completion-finished-hook 'company-remove-callback nil t)
1972 (setq company-backend backend)
1973 ;; Return non-nil if active.
1974 (or (company-manual-begin)
1975 (error "Cannot complete at point")))
1976
1977 (defun company-begin-with (candidates
1978 &optional prefix-length require-match callback)
1979 "Start a completion at point.
1980 CANDIDATES is the list of candidates to use and PREFIX-LENGTH is the length
1981 of the prefix that already is in the buffer before point.
1982 It defaults to 0.
1983
1984 CALLBACK is a function called with the selected result if the user
1985 successfully completes the input.
1986
1987 Example: \(company-begin-with '\(\"foo\" \"foobar\" \"foobarbaz\"\)\)"
1988 (let ((begin-marker (copy-marker (point) t)))
1989 (company-begin-backend
1990 (lambda (command &optional arg &rest ignored)
1991 (pcase command
1992 (`prefix
1993 (when (equal (point) (marker-position begin-marker))
1994 (buffer-substring (- (point) (or prefix-length 0)) (point))))
1995 (`candidates
1996 (all-completions arg candidates))
1997 (`require-match
1998 require-match)))
1999 callback)))
2000
2001 (defun company-version (&optional show-version)
2002 "Get the Company version as string.
2003
2004 If SHOW-VERSION is non-nil, show the version in the echo area."
2005 (interactive (list t))
2006 (with-temp-buffer
2007 (insert-file-contents (find-library-name "company"))
2008 (require 'lisp-mnt)
2009 (if show-version
2010 (message "Company version: %s" (lm-version))
2011 (lm-version))))
2012
2013 ;;; pseudo-tooltip ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2014
2015 (defvar-local company-pseudo-tooltip-overlay nil)
2016
2017 (defvar-local company-tooltip-offset 0)
2018
2019 (defun company-tooltip--lines-update-offset (selection num-lines limit)
2020 (cl-decf limit 2)
2021 (setq company-tooltip-offset
2022 (max (min selection company-tooltip-offset)
2023 (- selection -1 limit)))
2024
2025 (when (<= company-tooltip-offset 1)
2026 (cl-incf limit)
2027 (setq company-tooltip-offset 0))
2028
2029 (when (>= company-tooltip-offset (- num-lines limit 1))
2030 (cl-incf limit)
2031 (when (= selection (1- num-lines))
2032 (cl-decf company-tooltip-offset)
2033 (when (<= company-tooltip-offset 1)
2034 (setq company-tooltip-offset 0)
2035 (cl-incf limit))))
2036
2037 limit)
2038
2039 (defun company-tooltip--simple-update-offset (selection _num-lines limit)
2040 (setq company-tooltip-offset
2041 (if (< selection company-tooltip-offset)
2042 selection
2043 (max company-tooltip-offset
2044 (- selection limit -1)))))
2045
2046 ;;; propertize
2047
2048 (defsubst company-round-tab (arg)
2049 (* (/ (+ arg tab-width) tab-width) tab-width))
2050
2051 (defun company-plainify (str)
2052 (let ((prefix (get-text-property 0 'line-prefix str)))
2053 (when prefix ; Keep the original value unmodified, for no special reason.
2054 (setq str (concat prefix str))
2055 (remove-text-properties 0 (length str) '(line-prefix) str)))
2056 (let* ((pieces (split-string str "\t"))
2057 (copy pieces))
2058 (while (cdr copy)
2059 (setcar copy (company-safe-substring
2060 (car copy) 0 (company-round-tab (string-width (car copy)))))
2061 (pop copy))
2062 (apply 'concat pieces)))
2063
2064 (defun company-fill-propertize (value annotation width selected left right)
2065 (let* ((margin (length left))
2066 (common (+ (or (company-call-backend 'match value)
2067 (length company-common)) margin))
2068 (ann-ralign company-tooltip-align-annotations)
2069 (ann-truncate (< width
2070 (+ (length value) (length annotation)
2071 (if ann-ralign 1 0))))
2072 (ann-start (+ margin
2073 (if ann-ralign
2074 (if ann-truncate
2075 (1+ (length value))
2076 (- width (length annotation)))
2077 (length value))))
2078 (ann-end (min (+ ann-start (length annotation)) (+ margin width)))
2079 (line (concat left
2080 (if (or ann-truncate (not ann-ralign))
2081 (company-safe-substring
2082 (concat value
2083 (when (and annotation ann-ralign) " ")
2084 annotation)
2085 0 width)
2086 (concat
2087 (company-safe-substring value 0
2088 (- width (length annotation)))
2089 annotation))
2090 right)))
2091 (setq width (+ width margin (length right)))
2092
2093 (add-text-properties 0 width '(face company-tooltip
2094 mouse-face company-tooltip-mouse)
2095 line)
2096 (add-text-properties margin common
2097 '(face company-tooltip-common
2098 mouse-face company-tooltip-mouse)
2099 line)
2100 (when (< ann-start ann-end)
2101 (add-text-properties ann-start ann-end
2102 '(face company-tooltip-annotation
2103 mouse-face company-tooltip-mouse)
2104 line))
2105 (when selected
2106 (if (and company-search-string
2107 (string-match (regexp-quote company-search-string) value
2108 (length company-prefix)))
2109 (let ((beg (+ margin (match-beginning 0)))
2110 (end (+ margin (match-end 0))))
2111 (add-text-properties beg end '(face company-tooltip-selection)
2112 line)
2113 (when (< beg common)
2114 (add-text-properties beg common
2115 '(face company-tooltip-common-selection)
2116 line)))
2117 (add-text-properties 0 width '(face company-tooltip-selection
2118 mouse-face company-tooltip-selection)
2119 line)
2120 (add-text-properties margin common
2121 '(face company-tooltip-common-selection
2122 mouse-face company-tooltip-selection)
2123 line)))
2124 line))
2125
2126 ;;; replace
2127
2128 (defun company-buffer-lines (beg end)
2129 (goto-char beg)
2130 (let (lines)
2131 (while (and (= 1 (vertical-motion 1))
2132 (<= (point) end))
2133 (let ((bound (min end (1- (point)))))
2134 ;; A visual line can contain several physical lines (e.g. with outline's
2135 ;; folding overlay). Take only the first one.
2136 (push (buffer-substring beg
2137 (save-excursion
2138 (goto-char beg)
2139 (re-search-forward "$" bound 'move)
2140 (point)))
2141 lines))
2142 (setq beg (point)))
2143 (unless (eq beg end)
2144 (push (buffer-substring beg end) lines))
2145 (nreverse lines)))
2146
2147 (defun company-modify-line (old new offset)
2148 (concat (company-safe-substring old 0 offset)
2149 new
2150 (company-safe-substring old (+ offset (length new)))))
2151
2152 (defsubst company--length-limit (lst limit)
2153 (if (nthcdr limit lst)
2154 limit
2155 (length lst)))
2156
2157 (defun company--replacement-string (lines old column nl &optional align-top)
2158 (cl-decf column company-tooltip-margin)
2159
2160 (when (and align-top company-tooltip-flip-when-above)
2161 (setq lines (reverse lines)))
2162
2163 (let ((width (length (car lines)))
2164 (remaining-cols (- (+ (company--window-width) (window-hscroll))
2165 column)))
2166 (when (> width remaining-cols)
2167 (cl-decf column (- width remaining-cols))))
2168
2169 (let ((offset (and (< column 0) (- column)))
2170 new)
2171 (when offset
2172 (setq column 0))
2173 (when align-top
2174 ;; untouched lines first
2175 (dotimes (_ (- (length old) (length lines)))
2176 (push (pop old) new)))
2177 ;; length into old lines.
2178 (while old
2179 (push (company-modify-line (pop old)
2180 (company--offset-line (pop lines) offset)
2181 column) new))
2182 ;; Append whole new lines.
2183 (while lines
2184 (push (concat (company-space-string column)
2185 (company--offset-line (pop lines) offset))
2186 new))
2187
2188 (let ((str (concat (when nl "\n")
2189 (mapconcat 'identity (nreverse new) "\n")
2190 "\n")))
2191 (font-lock-append-text-property 0 (length str) 'face 'default str)
2192 str)))
2193
2194 (defun company--offset-line (line offset)
2195 (if (and offset line)
2196 (substring line offset)
2197 line))
2198
2199 (defun company--create-lines (selection limit)
2200 (let ((len company-candidates-length)
2201 (numbered 99999)
2202 (window-width (company--window-width))
2203 lines
2204 width
2205 lines-copy
2206 items
2207 previous
2208 remainder
2209 scrollbar-bounds)
2210
2211 ;; Maybe clear old offset.
2212 (when (< len (+ company-tooltip-offset limit))
2213 (setq company-tooltip-offset 0))
2214
2215 ;; Scroll to offset.
2216 (if (eq company-tooltip-offset-display 'lines)
2217 (setq limit (company-tooltip--lines-update-offset selection len limit))
2218 (company-tooltip--simple-update-offset selection len limit))
2219
2220 (cond
2221 ((eq company-tooltip-offset-display 'scrollbar)
2222 (setq scrollbar-bounds (company--scrollbar-bounds company-tooltip-offset
2223 limit len)))
2224 ((eq company-tooltip-offset-display 'lines)
2225 (when (> company-tooltip-offset 0)
2226 (setq previous (format "...(%d)" company-tooltip-offset)))
2227 (setq remainder (- len limit company-tooltip-offset)
2228 remainder (when (> remainder 0)
2229 (setq remainder (format "...(%d)" remainder))))))
2230
2231 (cl-decf selection company-tooltip-offset)
2232 (setq width (max (length previous) (length remainder))
2233 lines (nthcdr company-tooltip-offset company-candidates)
2234 len (min limit len)
2235 lines-copy lines)
2236
2237 (cl-decf window-width (* 2 company-tooltip-margin))
2238 (when scrollbar-bounds (cl-decf window-width))
2239
2240 (dotimes (_ len)
2241 (let* ((value (pop lines-copy))
2242 (annotation (company-call-backend 'annotation value)))
2243 (when (and annotation company-tooltip-align-annotations)
2244 ;; `lisp-completion-at-point' adds a space.
2245 (setq annotation (comment-string-strip annotation t nil)))
2246 (push (cons value annotation) items)
2247 (setq width (max (+ (length value)
2248 (if (and annotation company-tooltip-align-annotations)
2249 (1+ (length annotation))
2250 (length annotation)))
2251 width))))
2252
2253 (setq width (min window-width
2254 (max company-tooltip-minimum-width
2255 (if (and company-show-numbers
2256 (< company-tooltip-offset 10))
2257 (+ 2 width)
2258 width))))
2259
2260 ;; number can make tooltip too long
2261 (when company-show-numbers
2262 (setq numbered company-tooltip-offset))
2263
2264 (let ((items (nreverse items)) new)
2265 (when previous
2266 (push (company--scrollpos-line previous width) new))
2267
2268 (dotimes (i len)
2269 (let* ((item (pop items))
2270 (str (company-reformat (car item)))
2271 (annotation (cdr item))
2272 (right (company-space-string company-tooltip-margin))
2273 (width width))
2274 (when (< numbered 10)
2275 (cl-decf width 2)
2276 (cl-incf numbered)
2277 (setq right (concat (format " %d" (mod numbered 10)) right)))
2278 (push (concat
2279 (company-fill-propertize str annotation
2280 width (equal i selection)
2281 (company-space-string
2282 company-tooltip-margin)
2283 right)
2284 (when scrollbar-bounds
2285 (company--scrollbar i scrollbar-bounds)))
2286 new)))
2287
2288 (when remainder
2289 (push (company--scrollpos-line remainder width) new))
2290
2291 (nreverse new))))
2292
2293 (defun company--scrollbar-bounds (offset limit length)
2294 (when (> length limit)
2295 (let* ((size (ceiling (* limit (float limit)) length))
2296 (lower (floor (* limit (float offset)) length))
2297 (upper (+ lower size -1)))
2298 (cons lower upper))))
2299
2300 (defun company--scrollbar (i bounds)
2301 (propertize " " 'face
2302 (if (and (>= i (car bounds)) (<= i (cdr bounds)))
2303 'company-scrollbar-fg
2304 'company-scrollbar-bg)))
2305
2306 (defun company--scrollpos-line (text width)
2307 (propertize (concat (company-space-string company-tooltip-margin)
2308 (company-safe-substring text 0 width)
2309 (company-space-string company-tooltip-margin))
2310 'face 'company-tooltip))
2311
2312 ;; show
2313
2314 (defsubst company--window-inner-height ()
2315 (let ((edges (window-inside-edges)))
2316 (- (nth 3 edges) (nth 1 edges))))
2317
2318 (defsubst company--window-width ()
2319 (let ((ww (window-width)))
2320 ;; Account for the line continuation column.
2321 (when (zerop (cadr (window-fringes)))
2322 (cl-decf ww))
2323 (unless (or (display-graphic-p)
2324 (version< "24.3.1" emacs-version))
2325 ;; Emacs 24.3 and earlier included margins
2326 ;; in window-width when in TTY.
2327 (cl-decf ww
2328 (let ((margins (window-margins)))
2329 (+ (or (car margins) 0)
2330 (or (cdr margins) 0)))))
2331 ww))
2332
2333 (defun company--pseudo-tooltip-height ()
2334 "Calculate the appropriate tooltip height.
2335 Returns a negative number if the tooltip should be displayed above point."
2336 (let* ((lines (company--row))
2337 (below (- (company--window-inner-height) 1 lines)))
2338 (if (and (< below (min company-tooltip-minimum company-candidates-length))
2339 (> lines below))
2340 (- (max 3 (min company-tooltip-limit lines)))
2341 (max 3 (min company-tooltip-limit below)))))
2342
2343 (defun company-pseudo-tooltip-show (row column selection)
2344 (company-pseudo-tooltip-hide)
2345 (save-excursion
2346
2347 (let* ((height (company--pseudo-tooltip-height))
2348 above)
2349
2350 (when (< height 0)
2351 (setq row (+ row height -1)
2352 above t))
2353
2354 (let* ((nl (< (move-to-window-line row) row))
2355 (beg (point))
2356 (end (save-excursion
2357 (move-to-window-line (+ row (abs height)))
2358 (point)))
2359 (ov (make-overlay beg end))
2360 (args (list (mapcar 'company-plainify
2361 (company-buffer-lines beg end))
2362 column nl above)))
2363
2364 (setq company-pseudo-tooltip-overlay ov)
2365 (overlay-put ov 'company-replacement-args args)
2366
2367 (let ((lines (company--create-lines selection (abs height))))
2368 (overlay-put ov 'company-after
2369 (apply 'company--replacement-string lines args))
2370 (overlay-put ov 'company-width (string-width (car lines))))
2371
2372 (overlay-put ov 'company-column column)
2373 (overlay-put ov 'company-height height)))))
2374
2375 (defun company-pseudo-tooltip-show-at-point (pos)
2376 (let ((row (company--row pos))
2377 (col (company--column pos)))
2378 (company-pseudo-tooltip-show (1+ row) col company-selection)))
2379
2380 (defun company-pseudo-tooltip-edit (selection)
2381 (let* ((height (overlay-get company-pseudo-tooltip-overlay 'company-height))
2382 (lines (company--create-lines selection (abs height))))
2383 (overlay-put company-pseudo-tooltip-overlay 'company-width
2384 (string-width (car lines)))
2385 (overlay-put company-pseudo-tooltip-overlay 'company-after
2386 (apply 'company--replacement-string
2387 lines
2388 (overlay-get company-pseudo-tooltip-overlay
2389 'company-replacement-args)))))
2390
2391 (defun company-pseudo-tooltip-hide ()
2392 (when company-pseudo-tooltip-overlay
2393 (delete-overlay company-pseudo-tooltip-overlay)
2394 (setq company-pseudo-tooltip-overlay nil)))
2395
2396 (defun company-pseudo-tooltip-hide-temporarily ()
2397 (when (overlayp company-pseudo-tooltip-overlay)
2398 (overlay-put company-pseudo-tooltip-overlay 'invisible nil)
2399 (overlay-put company-pseudo-tooltip-overlay 'line-prefix nil)
2400 (overlay-put company-pseudo-tooltip-overlay 'after-string nil)))
2401
2402 (defun company-pseudo-tooltip-unhide ()
2403 (when company-pseudo-tooltip-overlay
2404 (overlay-put company-pseudo-tooltip-overlay 'invisible t)
2405 ;; Beat outline's folding overlays, at least.
2406 (overlay-put company-pseudo-tooltip-overlay 'priority 1)
2407 ;; No (extra) prefix for the first line.
2408 (overlay-put company-pseudo-tooltip-overlay 'line-prefix "")
2409 (overlay-put company-pseudo-tooltip-overlay 'after-string
2410 (overlay-get company-pseudo-tooltip-overlay 'company-after))
2411 (overlay-put company-pseudo-tooltip-overlay 'window (selected-window))))
2412
2413 (defun company-pseudo-tooltip-guard ()
2414 (buffer-substring-no-properties
2415 (point) (overlay-start company-pseudo-tooltip-overlay)))
2416
2417 (defun company-pseudo-tooltip-frontend (command)
2418 "`company-mode' front-end similar to a tooltip but based on overlays."
2419 (cl-case command
2420 (pre-command (company-pseudo-tooltip-hide-temporarily))
2421 (post-command
2422 (let ((old-height (if (overlayp company-pseudo-tooltip-overlay)
2423 (overlay-get company-pseudo-tooltip-overlay
2424 'company-height)
2425 0))
2426 (new-height (company--pseudo-tooltip-height)))
2427 (unless (and (>= (* old-height new-height) 0)
2428 (>= (abs old-height) (abs new-height))
2429 (equal (company-pseudo-tooltip-guard)
2430 (overlay-get company-pseudo-tooltip-overlay
2431 'company-guard)))
2432 ;; Redraw needed.
2433 (company-pseudo-tooltip-show-at-point (- (point)
2434 (length company-prefix)))
2435 (overlay-put company-pseudo-tooltip-overlay
2436 'company-guard (company-pseudo-tooltip-guard))))
2437 (company-pseudo-tooltip-unhide))
2438 (hide (company-pseudo-tooltip-hide)
2439 (setq company-tooltip-offset 0))
2440 (update (when (overlayp company-pseudo-tooltip-overlay)
2441 (company-pseudo-tooltip-edit company-selection)))))
2442
2443 (defun company-pseudo-tooltip-unless-just-one-frontend (command)
2444 "`company-pseudo-tooltip-frontend', but not shown for single candidates."
2445 (unless (and (eq command 'post-command)
2446 (company--show-inline-p))
2447 (company-pseudo-tooltip-frontend command)))
2448
2449 ;;; overlay ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2450
2451 (defvar-local company-preview-overlay nil)
2452
2453 (defun company-preview-show-at-point (pos)
2454 (company-preview-hide)
2455
2456 (setq company-preview-overlay (make-overlay pos (1+ pos)))
2457
2458 (let ((completion (nth company-selection company-candidates)))
2459 (setq completion (propertize completion 'face 'company-preview))
2460 (add-text-properties 0 (length company-common)
2461 '(face company-preview-common) completion)
2462
2463 ;; Add search string
2464 (and company-search-string
2465 (string-match (regexp-quote company-search-string) completion)
2466 (add-text-properties (match-beginning 0)
2467 (match-end 0)
2468 '(face company-preview-search)
2469 completion))
2470
2471 (setq completion (company-strip-prefix completion))
2472
2473 (and (equal pos (point))
2474 (not (equal completion ""))
2475 (add-text-properties 0 1 '(cursor t) completion))
2476
2477 (overlay-put company-preview-overlay 'display
2478 (concat completion (unless (eq pos (point-max))
2479 (buffer-substring pos (1+ pos)))))
2480 (overlay-put company-preview-overlay 'window (selected-window))))
2481
2482 (defun company-preview-hide ()
2483 (when company-preview-overlay
2484 (delete-overlay company-preview-overlay)
2485 (setq company-preview-overlay nil)))
2486
2487 (defun company-preview-frontend (command)
2488 "`company-mode' front-end showing the selection as if it had been inserted."
2489 (pcase command
2490 (`pre-command (company-preview-hide))
2491 (`post-command (company-preview-show-at-point (point)))
2492 (`hide (company-preview-hide))))
2493
2494 (defun company-preview-if-just-one-frontend (command)
2495 "`company-preview-frontend', but only shown for single candidates."
2496 (when (or (not (eq command 'post-command))
2497 (company--show-inline-p))
2498 (company-preview-frontend command)))
2499
2500 (defun company--show-inline-p ()
2501 (and (not (cdr company-candidates))
2502 company-common
2503 (string-prefix-p company-prefix company-common
2504 (company-call-backend 'ignore-case))))
2505
2506 ;;; echo ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2507
2508 (defvar-local company-echo-last-msg nil)
2509
2510 (defvar company-echo-timer nil)
2511
2512 (defvar company-echo-delay .01)
2513
2514 (defun company-echo-show (&optional getter)
2515 (when getter
2516 (setq company-echo-last-msg (funcall getter)))
2517 (let ((message-log-max nil))
2518 (if company-echo-last-msg
2519 (message "%s" company-echo-last-msg)
2520 (message ""))))
2521
2522 (defun company-echo-show-soon (&optional getter)
2523 (when company-echo-timer
2524 (cancel-timer company-echo-timer))
2525 (setq company-echo-timer (run-with-timer 0 nil 'company-echo-show getter)))
2526
2527 (defsubst company-echo-show-when-idle (&optional getter)
2528 (when (sit-for company-echo-delay)
2529 (company-echo-show getter)))
2530
2531 (defun company-echo-format ()
2532
2533 (let ((limit (window-width (minibuffer-window)))
2534 (len -1)
2535 ;; Roll to selection.
2536 (candidates (nthcdr company-selection company-candidates))
2537 (i (if company-show-numbers company-selection 99999))
2538 comp msg)
2539
2540 (while candidates
2541 (setq comp (company-reformat (pop candidates))
2542 len (+ len 1 (length comp)))
2543 (if (< i 10)
2544 ;; Add number.
2545 (progn
2546 (setq comp (propertize (format "%d: %s" i comp)
2547 'face 'company-echo))
2548 (cl-incf len 3)
2549 (cl-incf i)
2550 (add-text-properties 3 (+ 3 (length company-common))
2551 '(face company-echo-common) comp))
2552 (setq comp (propertize comp 'face 'company-echo))
2553 (add-text-properties 0 (length company-common)
2554 '(face company-echo-common) comp))
2555 (if (>= len limit)
2556 (setq candidates nil)
2557 (push comp msg)))
2558
2559 (mapconcat 'identity (nreverse msg) " ")))
2560
2561 (defun company-echo-strip-common-format ()
2562
2563 (let ((limit (window-width (minibuffer-window)))
2564 (len (+ (length company-prefix) 2))
2565 ;; Roll to selection.
2566 (candidates (nthcdr company-selection company-candidates))
2567 (i (if company-show-numbers company-selection 99999))
2568 msg comp)
2569
2570 (while candidates
2571 (setq comp (company-strip-prefix (pop candidates))
2572 len (+ len 2 (length comp)))
2573 (when (< i 10)
2574 ;; Add number.
2575 (setq comp (format "%s (%d)" comp i))
2576 (cl-incf len 4)
2577 (cl-incf i))
2578 (if (>= len limit)
2579 (setq candidates nil)
2580 (push (propertize comp 'face 'company-echo) msg)))
2581
2582 (concat (propertize company-prefix 'face 'company-echo-common) "{"
2583 (mapconcat 'identity (nreverse msg) ", ")
2584 "}")))
2585
2586 (defun company-echo-hide ()
2587 (unless (equal company-echo-last-msg "")
2588 (setq company-echo-last-msg "")
2589 (company-echo-show)))
2590
2591 (defun company-echo-frontend (command)
2592 "`company-mode' front-end showing the candidates in the echo area."
2593 (pcase command
2594 (`post-command (company-echo-show-soon 'company-echo-format))
2595 (`hide (company-echo-hide))))
2596
2597 (defun company-echo-strip-common-frontend (command)
2598 "`company-mode' front-end showing the candidates in the echo area."
2599 (pcase command
2600 (`post-command (company-echo-show-soon 'company-echo-strip-common-format))
2601 (`hide (company-echo-hide))))
2602
2603 (defun company-echo-metadata-frontend (command)
2604 "`company-mode' front-end showing the documentation in the echo area."
2605 (pcase command
2606 (`post-command (company-echo-show-when-idle 'company-fetch-metadata))
2607 (`hide (company-echo-hide))))
2608
2609 (provide 'company)
2610 ;;; company.el ends here