]> code.delx.au - gnu-emacs-elpa/blob - company.el
Define company-sort-by-backend-importance
[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. See
552 `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 (not (or buffer-read-only overriding-terminal-local-map
1010 overriding-local-map))
1011 ;; Check if in the middle of entering a key combination.
1012 (or (equal (this-command-keys-vector) [])
1013 (not (keymapp (key-binding (this-command-keys-vector)))))
1014 (eq company-idle-delay t)
1015 (or (eq t company-begin-commands)
1016 (memq this-command company-begin-commands)
1017 (and (symbolp this-command) (get this-command 'company-begin)))
1018 (not (and transient-mark-mode mark-active))))
1019
1020 (defun company--should-continue ()
1021 (or (eq t company-begin-commands)
1022 (eq t company-continue-commands)
1023 (if (eq 'not (car company-continue-commands))
1024 (not (memq this-command (cdr company-continue-commands)))
1025 (or (memq this-command company-begin-commands)
1026 (memq this-command company-continue-commands)
1027 (string-match-p "\\`company-" (symbol-name this-command))))))
1028
1029 (defun company-call-frontends (command)
1030 (dolist (frontend company-frontends)
1031 (condition-case err
1032 (funcall frontend command)
1033 (error (error "Company: Front-end %s error \"%s\" on command %s"
1034 frontend (error-message-string err) command)))))
1035
1036 (defun company-set-selection (selection &optional force-update)
1037 (setq selection
1038 (if company-selection-wrap-around
1039 (mod selection company-candidates-length)
1040 (max 0 (min (1- company-candidates-length) selection))))
1041 (when (or force-update (not (equal selection company-selection)))
1042 (company--update-group-lighter (nth selection company-candidates))
1043 (setq company-selection selection
1044 company-selection-changed t)
1045 (company-call-frontends 'update)))
1046
1047 (defun company--update-group-lighter (candidate)
1048 (when (listp company-backend)
1049 (let ((backend (or (get-text-property 0 'company-backend candidate)
1050 (car company-backend))))
1051 (when (and backend (symbolp backend))
1052 (let ((name (replace-regexp-in-string "company-\\|-company" ""
1053 (symbol-name backend))))
1054 (setq company-lighter (format " company-<%s>" name)))))))
1055
1056 (defun company-apply-predicate (candidates predicate)
1057 (let (new)
1058 (dolist (c candidates)
1059 (when (funcall predicate c)
1060 (push c new)))
1061 (nreverse new)))
1062
1063 (defun company-update-candidates (candidates)
1064 (setq company-candidates-length (length candidates))
1065 (if (> company-selection 0)
1066 ;; Try to restore the selection
1067 (let ((selected (nth company-selection company-candidates)))
1068 (setq company-selection 0
1069 company-candidates candidates)
1070 (when selected
1071 (while (and candidates (string< (pop candidates) selected))
1072 (cl-incf company-selection))
1073 (unless candidates
1074 ;; Make sure selection isn't out of bounds.
1075 (setq company-selection (min (1- company-candidates-length)
1076 company-selection)))))
1077 (setq company-selection 0
1078 company-candidates candidates))
1079 ;; Save in cache:
1080 (push (cons company-prefix company-candidates) company-candidates-cache)
1081 ;; Calculate common.
1082 (let ((completion-ignore-case (company-call-backend 'ignore-case)))
1083 ;; We want to support non-prefix completion, so filtering is the
1084 ;; responsibility of each respective backend, not ours.
1085 ;; On the other hand, we don't want to replace non-prefix input in
1086 ;; `company-complete-common'.
1087 (setq company-common
1088 (if (cdr company-candidates)
1089 (let ((common (try-completion company-prefix company-candidates)))
1090 (if (eq common t)
1091 ;; Mulple equal strings, probably with different
1092 ;; annotations.
1093 company-prefix
1094 common))
1095 (car company-candidates)))))
1096
1097 (defun company-calculate-candidates (prefix)
1098 (let ((candidates (cdr (assoc prefix company-candidates-cache)))
1099 (ignore-case (company-call-backend 'ignore-case)))
1100 (or candidates
1101 (when company-candidates-cache
1102 (let ((len (length prefix))
1103 (completion-ignore-case ignore-case)
1104 prev)
1105 (cl-dotimes (i (1+ len))
1106 (when (setq prev (cdr (assoc (substring prefix 0 (- len i))
1107 company-candidates-cache)))
1108 (setq candidates (all-completions prefix prev))
1109 (cl-return t)))))
1110 ;; no cache match, call back-end
1111 (setq candidates
1112 (company--process-candidates
1113 (company--fetch-candidates prefix))))
1114 (setq candidates (company--transform-candidates candidates))
1115 (when candidates
1116 (if (or (cdr candidates)
1117 (not (eq t (compare-strings (car candidates) nil nil
1118 prefix nil nil ignore-case))))
1119 candidates
1120 ;; Already completed and unique; don't start.
1121 t))))
1122
1123 (defun company--fetch-candidates (prefix)
1124 (let ((c (if company--manual-action
1125 (company-call-backend 'candidates prefix)
1126 (company-call-backend-raw 'candidates prefix)))
1127 res)
1128 (if (not (eq (car c) :async))
1129 c
1130 (let ((buf (current-buffer))
1131 (win (selected-window))
1132 (tick (buffer-chars-modified-tick))
1133 (pt (point))
1134 (backend company-backend))
1135 (funcall
1136 (cdr c)
1137 (lambda (candidates)
1138 (if (not (and candidates (eq res 'done)))
1139 ;; Fetcher called us right back.
1140 (setq res candidates)
1141 (setq company-backend backend
1142 company-candidates-cache
1143 (list (cons prefix
1144 (company--process-candidates
1145 candidates))))
1146 (company-idle-begin buf win tick pt)))))
1147 ;; FIXME: Relying on the fact that the callers
1148 ;; will interpret nil as "do nothing" is shaky.
1149 ;; A throw-catch would be one possible improvement.
1150 (or res
1151 (progn (setq res 'done) nil)))))
1152
1153 (defun company--process-candidates (candidates)
1154 (when company-candidates-predicate
1155 (setq candidates
1156 (company-apply-predicate candidates
1157 company-candidates-predicate)))
1158 (unless (company-call-backend 'sorted)
1159 (setq candidates (sort candidates 'string<)))
1160 (when (company-call-backend 'duplicates)
1161 (company--strip-duplicates candidates))
1162 candidates)
1163
1164 (defun company--strip-duplicates (candidates)
1165 (let ((c2 candidates))
1166 (while c2
1167 (setcdr c2
1168 (let ((str (car c2))
1169 (anno 'unk))
1170 (pop c2)
1171 (while (let ((str2 (car c2)))
1172 (if (not (equal str str2))
1173 nil
1174 (when (eq anno 'unk)
1175 (setq anno (company-call-backend
1176 'annotation str)))
1177 (equal anno
1178 (company-call-backend
1179 'annotation str2))))
1180 (pop c2))
1181 c2)))))
1182
1183 (defun company--transform-candidates (candidates)
1184 (let ((c candidates))
1185 (dolist (tr company-transformers)
1186 (setq c (funcall tr c)))
1187 c))
1188
1189 (defun company-sort-by-occurrence (candidates)
1190 "Sort CANDIDATES according to their occurrences.
1191 Searches for each in the currently visible part of the current buffer and
1192 gives priority to the closest ones above point, then closest ones below
1193 point. The rest of the list is appended unchanged.
1194 Keywords and function definition names are ignored."
1195 (let* (occurs
1196 (noccurs
1197 (cl-delete-if
1198 (lambda (candidate)
1199 (when (or
1200 (save-excursion
1201 (progn (forward-char (- (length company-prefix)))
1202 (search-backward candidate (window-start) t)))
1203 (save-excursion
1204 (search-forward candidate (window-end) t)))
1205 (let ((beg (match-beginning 0))
1206 (end (match-end 0)))
1207 (when (save-excursion
1208 (goto-char end)
1209 (and (not (memq (get-text-property (point) 'face)
1210 '(font-lock-function-name-face
1211 font-lock-keyword-face)))
1212 (let ((prefix (company--prefix-str
1213 (company-call-backend 'prefix))))
1214 (and (stringp prefix)
1215 (= (length prefix) (- end beg))))))
1216 (push (cons candidate (if (< beg (point))
1217 (- (point) end)
1218 (- beg (window-start))))
1219 occurs)
1220 t))))
1221 candidates)))
1222 (nconc
1223 (mapcar #'car (sort occurs (lambda (e1 e2) (<= (cdr e1) (cdr e2)))))
1224 noccurs)))
1225
1226 (defun company-sort-by-backend-importance (candidates)
1227 "Sort CANDIDATES as two priority groups.
1228 If `company-backend' is a function, do nothing. If it's a list, move
1229 candidates from back-ends before keyword `:with' to the front. Candidates
1230 from the rest of the back-ends in the group, if any, will be left at the end."
1231 (if (functionp company-backend)
1232 candidates
1233 (let ((low-priority (cdr (memq :with company-backend))))
1234 (if (null low-priority)
1235 candidates
1236 (sort candidates
1237 (lambda (c1 c2)
1238 (and
1239 (let ((b2 (get-text-property 0 'company-backend c2)))
1240 (and b2 (memq b2 low-priority)))
1241 (let ((b1 (get-text-property 0 'company-backend c1)))
1242 (or (not b1) (not (memq b1 low-priority)))))))))))
1243
1244 (defun company-idle-begin (buf win tick pos)
1245 (and (eq buf (current-buffer))
1246 (eq win (selected-window))
1247 (eq tick (buffer-chars-modified-tick))
1248 (eq pos (point))
1249 (when (company-auto-begin)
1250 (when (version< emacs-version "24.3.50")
1251 (company-input-noop))
1252 (company-post-command))))
1253
1254 (defun company-auto-begin ()
1255 (and company-mode
1256 (not company-candidates)
1257 (let ((company-idle-delay t)
1258 (company-begin-commands t))
1259 (condition-case-unless-debug err
1260 (company-begin)
1261 (error (message "Company: An error occurred in auto-begin")
1262 (message "%s" (error-message-string err))
1263 (company-cancel))
1264 (quit (company-cancel)))))
1265 (unless company-candidates
1266 (setq company-backend nil))
1267 ;; Return non-nil if active.
1268 company-candidates)
1269
1270 (defun company-manual-begin ()
1271 (interactive)
1272 (company-assert-enabled)
1273 (setq company--manual-action t)
1274 (unwind-protect
1275 (let ((company-minimum-prefix-length 0))
1276 (company-auto-begin))
1277 (unless company-candidates
1278 (setq company--manual-action nil))))
1279
1280 (defun company-other-backend (&optional backward)
1281 (interactive (list current-prefix-arg))
1282 (company-assert-enabled)
1283 (let* ((after (if company-backend
1284 (cdr (member company-backend company-backends))
1285 company-backends))
1286 (before (cdr (member company-backend (reverse company-backends))))
1287 (next (if backward
1288 (append before (reverse after))
1289 (append after (reverse before)))))
1290 (company-cancel)
1291 (cl-dolist (backend next)
1292 (when (ignore-errors (company-begin-backend backend))
1293 (cl-return t))))
1294 (unless company-candidates
1295 (error "No other back-end")))
1296
1297 (defun company-require-match-p ()
1298 (let ((backend-value (company-call-backend 'require-match)))
1299 (or (eq backend-value t)
1300 (and (not (eq backend-value 'never))
1301 (if (functionp company-require-match)
1302 (funcall company-require-match)
1303 (eq company-require-match t))))))
1304
1305 (defun company-auto-complete-p (input)
1306 "Return non-nil, if input starts with punctuation or parentheses."
1307 (and (if (functionp company-auto-complete)
1308 (funcall company-auto-complete)
1309 company-auto-complete)
1310 (if (functionp company-auto-complete-chars)
1311 (funcall company-auto-complete-chars input)
1312 (if (consp company-auto-complete-chars)
1313 (memq (char-syntax (string-to-char input))
1314 company-auto-complete-chars)
1315 (string-match (substring input 0 1) company-auto-complete-chars)))))
1316
1317 (defun company--incremental-p ()
1318 (and (> (point) company-point)
1319 (> (point-max) company--point-max)
1320 (not (eq this-command 'backward-delete-char-untabify))
1321 (equal (buffer-substring (- company-point (length company-prefix))
1322 company-point)
1323 company-prefix)))
1324
1325 (defun company--continue-failed ()
1326 (let ((input (buffer-substring-no-properties (point) company-point)))
1327 (cond
1328 ((company-auto-complete-p input)
1329 ;; auto-complete
1330 (save-excursion
1331 (goto-char company-point)
1332 (let ((company--auto-completion t))
1333 (company-complete-selection))
1334 nil))
1335 ((company-require-match-p)
1336 ;; wrong incremental input, but required match
1337 (delete-char (- (length input)))
1338 (ding)
1339 (message "Matching input is required")
1340 company-candidates)
1341 ((equal company-prefix (car company-candidates))
1342 ;; last input was actually success
1343 (company-cancel company-prefix))
1344 (t (company-cancel)))))
1345
1346 (defun company--good-prefix-p (prefix)
1347 (and (stringp (company--prefix-str prefix)) ;excludes 'stop
1348 (or (eq (cdr-safe prefix) t)
1349 (let ((len (or (cdr-safe prefix) (length prefix))))
1350 (if company--manual-prefix
1351 (or (not company-abort-manual-when-too-short)
1352 ;; Must not be less than minimum or initial length.
1353 (>= len (min company-minimum-prefix-length
1354 (length company--manual-prefix))))
1355 (>= len company-minimum-prefix-length))))))
1356
1357 (defun company--continue ()
1358 (when (company-call-backend 'no-cache company-prefix)
1359 ;; Don't complete existing candidates, fetch new ones.
1360 (setq company-candidates-cache nil))
1361 (let* ((new-prefix (company-call-backend 'prefix))
1362 (c (when (and (company--good-prefix-p new-prefix)
1363 (setq new-prefix (company--prefix-str new-prefix))
1364 (= (- (point) (length new-prefix))
1365 (- company-point (length company-prefix))))
1366 (company-calculate-candidates new-prefix))))
1367 (cond
1368 ((eq c t)
1369 ;; t means complete/unique.
1370 ;; Handle it like completion was aborted, to differentiate from user
1371 ;; calling one of Company's commands to insert the candidate.
1372 (company-cancel 'unique))
1373 ((consp c)
1374 ;; incremental match
1375 (setq company-prefix new-prefix)
1376 (company-update-candidates c)
1377 c)
1378 ((not (company--incremental-p))
1379 (company-cancel))
1380 (t (company--continue-failed)))))
1381
1382 (defun company--begin-new ()
1383 (let (prefix c)
1384 (cl-dolist (backend (if company-backend
1385 ;; prefer manual override
1386 (list company-backend)
1387 company-backends))
1388 (setq prefix
1389 (if (or (symbolp backend)
1390 (functionp backend))
1391 (when (or (not (symbolp backend))
1392 (eq t (get backend 'company-init))
1393 (unless (get backend 'company-init)
1394 (company-init-backend backend)))
1395 (funcall backend 'prefix))
1396 (company--multi-backend-adapter backend 'prefix)))
1397 (when prefix
1398 (when (company--good-prefix-p prefix)
1399 (setq company-prefix (company--prefix-str prefix)
1400 company-backend backend
1401 c (company-calculate-candidates company-prefix))
1402 ;; t means complete/unique. We don't start, so no hooks.
1403 (if (not (consp c))
1404 (when company--manual-action
1405 (message "No completion found"))
1406 (when company--manual-action
1407 (setq company--manual-prefix prefix))
1408 (if (symbolp backend)
1409 (setq company-lighter (concat " " (symbol-name backend)))
1410 (company--update-group-lighter (car c)))
1411 (company-update-candidates c)
1412 (run-hook-with-args 'company-completion-started-hook
1413 (company-explicit-action-p))
1414 (company-call-frontends 'show)))
1415 (cl-return c)))))
1416
1417 (defun company-begin ()
1418 (or (and company-candidates (company--continue))
1419 (and (company--should-complete) (company--begin-new)))
1420 (when company-candidates
1421 (let ((modified (buffer-modified-p)))
1422 (when (and company-end-of-buffer-workaround (eobp))
1423 (save-excursion (insert "\n"))
1424 (setq company-added-newline
1425 (or modified (buffer-chars-modified-tick)))))
1426 (setq company-point (point)
1427 company--point-max (point-max))
1428 (company-ensure-emulation-alist)
1429 (company-enable-overriding-keymap company-active-map)
1430 (company-call-frontends 'update)))
1431
1432 (defun company-cancel (&optional result)
1433 (and company-added-newline
1434 (> (point-max) (point-min))
1435 (let ((tick (buffer-chars-modified-tick)))
1436 (delete-region (1- (point-max)) (point-max))
1437 (equal tick company-added-newline))
1438 ;; Only set unmodified when tick remained the same since insert,
1439 ;; and the buffer wasn't modified before.
1440 (set-buffer-modified-p nil))
1441 (when company-prefix
1442 (if (stringp result)
1443 (progn
1444 (company-call-backend 'pre-completion result)
1445 (run-hook-with-args 'company-completion-finished-hook result)
1446 (company-call-backend 'post-completion result))
1447 (run-hook-with-args 'company-completion-cancelled-hook result)))
1448 (setq company-added-newline nil
1449 company-backend nil
1450 company-prefix nil
1451 company-candidates nil
1452 company-candidates-length nil
1453 company-candidates-cache nil
1454 company-candidates-predicate nil
1455 company-common nil
1456 company-selection 0
1457 company-selection-changed nil
1458 company--manual-action nil
1459 company--manual-prefix nil
1460 company-lighter company-default-lighter
1461 company--point-max nil
1462 company-point nil)
1463 (when company-timer
1464 (cancel-timer company-timer))
1465 (company-search-mode 0)
1466 (company-call-frontends 'hide)
1467 (company-enable-overriding-keymap nil)
1468 ;; Make return value explicit.
1469 nil)
1470
1471 (defun company-abort ()
1472 (interactive)
1473 (company-cancel t)
1474 ;; Don't start again, unless started manually.
1475 (setq company-point (point)))
1476
1477 (defun company-finish (result)
1478 (company--insert-candidate result)
1479 (company-cancel result)
1480 ;; Don't start again, unless started manually.
1481 (setq company-point (point)))
1482
1483 (defsubst company-keep (command)
1484 (and (symbolp command) (get command 'company-keep)))
1485
1486 (defun company-pre-command ()
1487 (unless (company-keep this-command)
1488 (condition-case err
1489 (when company-candidates
1490 (company-call-frontends 'pre-command)
1491 (unless (company--should-continue)
1492 (company-abort)))
1493 (error (message "Company: An error occurred in pre-command")
1494 (message "%s" (error-message-string err))
1495 (company-cancel))))
1496 (when company-timer
1497 (cancel-timer company-timer)
1498 (setq company-timer nil))
1499 (company-uninstall-map))
1500
1501 (defun company-post-command ()
1502 (unless (company-keep this-command)
1503 (condition-case err
1504 (progn
1505 (unless (equal (point) company-point)
1506 (company-begin))
1507 (if company-candidates
1508 (company-call-frontends 'post-command)
1509 (and (numberp company-idle-delay)
1510 (or (eq t company-begin-commands)
1511 (memq this-command company-begin-commands))
1512 (not (equal (point) company-point))
1513 (setq company-timer
1514 (run-with-timer company-idle-delay nil
1515 'company-idle-begin
1516 (current-buffer) (selected-window)
1517 (buffer-chars-modified-tick) (point))))))
1518 (error (message "Company: An error occurred in post-command")
1519 (message "%s" (error-message-string err))
1520 (company-cancel))))
1521 (company-install-map))
1522
1523 ;;; search ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1524
1525 (defvar-local company-search-string nil)
1526
1527 (defvar-local company-search-lighter " Search: \"\"")
1528
1529 (defvar-local company-search-old-map nil)
1530
1531 (defvar-local company-search-old-selection 0)
1532
1533 (defun company-search (text lines)
1534 (let ((quoted (regexp-quote text))
1535 (i 0))
1536 (cl-dolist (line lines)
1537 (when (string-match quoted line (length company-prefix))
1538 (cl-return i))
1539 (cl-incf i))))
1540
1541 (defun company-search-printing-char ()
1542 (interactive)
1543 (company-search-assert-enabled)
1544 (setq company-search-string
1545 (concat (or company-search-string "") (string last-command-event))
1546 company-search-lighter (concat " Search: \"" company-search-string
1547 "\""))
1548 (let ((pos (company-search company-search-string
1549 (nthcdr company-selection company-candidates))))
1550 (if (null pos)
1551 (ding)
1552 (company-set-selection (+ company-selection pos) t))))
1553
1554 (defun company-search-repeat-forward ()
1555 "Repeat the incremental search in completion candidates forward."
1556 (interactive)
1557 (company-search-assert-enabled)
1558 (let ((pos (company-search company-search-string
1559 (cdr (nthcdr company-selection
1560 company-candidates)))))
1561 (if (null pos)
1562 (ding)
1563 (company-set-selection (+ company-selection pos 1) t))))
1564
1565 (defun company-search-repeat-backward ()
1566 "Repeat the incremental search in completion candidates backwards."
1567 (interactive)
1568 (company-search-assert-enabled)
1569 (let ((pos (company-search company-search-string
1570 (nthcdr (- company-candidates-length
1571 company-selection)
1572 (reverse company-candidates)))))
1573 (if (null pos)
1574 (ding)
1575 (company-set-selection (- company-selection pos 1) t))))
1576
1577 (defun company-create-match-predicate ()
1578 (setq company-candidates-predicate
1579 `(lambda (candidate)
1580 ,(if company-candidates-predicate
1581 `(and (string-match ,company-search-string candidate)
1582 (funcall ,company-candidates-predicate
1583 candidate))
1584 `(string-match ,company-search-string candidate))))
1585 (company-update-candidates
1586 (company-apply-predicate company-candidates company-candidates-predicate))
1587 ;; Invalidate cache.
1588 (setq company-candidates-cache (cons company-prefix company-candidates)))
1589
1590 (defun company-filter-printing-char ()
1591 (interactive)
1592 (company-search-assert-enabled)
1593 (company-search-printing-char)
1594 (company-create-match-predicate)
1595 (company-call-frontends 'update))
1596
1597 (defun company-search-kill-others ()
1598 "Limit the completion candidates to the ones matching the search string."
1599 (interactive)
1600 (company-search-assert-enabled)
1601 (company-create-match-predicate)
1602 (company-search-mode 0)
1603 (company-call-frontends 'update))
1604
1605 (defun company-search-abort ()
1606 "Abort searching the completion candidates."
1607 (interactive)
1608 (company-search-assert-enabled)
1609 (company-set-selection company-search-old-selection t)
1610 (company-search-mode 0))
1611
1612 (defun company-search-other-char ()
1613 (interactive)
1614 (company-search-assert-enabled)
1615 (company-search-mode 0)
1616 (company--unread-last-input))
1617
1618 (defvar company-search-map
1619 (let ((i 0)
1620 (keymap (make-keymap)))
1621 (if (fboundp 'max-char)
1622 (set-char-table-range (nth 1 keymap) (cons #x100 (max-char))
1623 'company-search-printing-char)
1624 (with-no-warnings
1625 ;; obsolete in Emacs 23
1626 (let ((l (generic-character-list))
1627 (table (nth 1 keymap)))
1628 (while l
1629 (set-char-table-default table (car l) 'company-search-printing-char)
1630 (setq l (cdr l))))))
1631 (define-key keymap [t] 'company-search-other-char)
1632 (while (< i ?\s)
1633 (define-key keymap (make-string 1 i) 'company-search-other-char)
1634 (cl-incf i))
1635 (while (< i 256)
1636 (define-key keymap (vector i) 'company-search-printing-char)
1637 (cl-incf i))
1638 (let ((meta-map (make-sparse-keymap)))
1639 (define-key keymap (char-to-string meta-prefix-char) meta-map)
1640 (define-key keymap [escape] meta-map))
1641 (define-key keymap (vector meta-prefix-char t) 'company-search-other-char)
1642 (define-key keymap "\e\e\e" 'company-search-other-char)
1643 (define-key keymap [escape escape escape] 'company-search-other-char)
1644 (define-key keymap (kbd "DEL") 'company-search-other-char)
1645
1646 (define-key keymap "\C-g" 'company-search-abort)
1647 (define-key keymap "\C-s" 'company-search-repeat-forward)
1648 (define-key keymap "\C-r" 'company-search-repeat-backward)
1649 (define-key keymap "\C-o" 'company-search-kill-others)
1650 keymap)
1651 "Keymap used for incrementally searching the completion candidates.")
1652
1653 (define-minor-mode company-search-mode
1654 "Search mode for completion candidates.
1655 Don't start this directly, use `company-search-candidates' or
1656 `company-filter-candidates'."
1657 nil company-search-lighter nil
1658 (if company-search-mode
1659 (if (company-manual-begin)
1660 (progn
1661 (setq company-search-old-selection company-selection)
1662 (company-call-frontends 'update))
1663 (setq company-search-mode nil))
1664 (kill-local-variable 'company-search-string)
1665 (kill-local-variable 'company-search-lighter)
1666 (kill-local-variable 'company-search-old-selection)
1667 (company-enable-overriding-keymap company-active-map)))
1668
1669 (defun company-search-assert-enabled ()
1670 (company-assert-enabled)
1671 (unless company-search-mode
1672 (company-uninstall-map)
1673 (error "Company not in search mode")))
1674
1675 (defun company-search-candidates ()
1676 "Start searching the completion candidates incrementally.
1677
1678 \\<company-search-map>Search can be controlled with the commands:
1679 - `company-search-repeat-forward' (\\[company-search-repeat-forward])
1680 - `company-search-repeat-backward' (\\[company-search-repeat-backward])
1681 - `company-search-abort' (\\[company-search-abort])
1682
1683 Regular characters are appended to the search string.
1684
1685 The command `company-search-kill-others' (\\[company-search-kill-others])
1686 uses the search string to limit the completion candidates."
1687 (interactive)
1688 (company-search-mode 1)
1689 (company-enable-overriding-keymap company-search-map))
1690
1691 (defvar company-filter-map
1692 (let ((keymap (make-keymap)))
1693 (define-key keymap [remap company-search-printing-char]
1694 'company-filter-printing-char)
1695 (set-keymap-parent keymap company-search-map)
1696 keymap)
1697 "Keymap used for incrementally searching the completion candidates.")
1698
1699 (defun company-filter-candidates ()
1700 "Start filtering the completion candidates incrementally.
1701 This works the same way as `company-search-candidates' immediately
1702 followed by `company-search-kill-others' after each input."
1703 (interactive)
1704 (company-search-mode 1)
1705 (company-enable-overriding-keymap company-filter-map))
1706
1707 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1708
1709 (defun company-select-next ()
1710 "Select the next candidate in the list."
1711 (interactive)
1712 (when (company-manual-begin)
1713 (company-set-selection (1+ company-selection))))
1714
1715 (defun company-select-previous ()
1716 "Select the previous candidate in the list."
1717 (interactive)
1718 (when (company-manual-begin)
1719 (company-set-selection (1- company-selection))))
1720
1721 (defun company-select-next-or-abort ()
1722 "Select the next candidate if more than one, else abort
1723 and invoke the normal binding."
1724 (interactive)
1725 (if (> company-candidates-length 1)
1726 (company-select-next)
1727 (company-abort)
1728 (company--unread-last-input)))
1729
1730 (defun company-select-previous-or-abort ()
1731 "Select the previous candidate if more than one, else abort
1732 and invoke the normal binding."
1733 (interactive)
1734 (if (> company-candidates-length 1)
1735 (company-select-previous)
1736 (company-abort)
1737 (company--unread-last-input)))
1738
1739 (defvar company-pseudo-tooltip-overlay)
1740
1741 (defvar company-tooltip-offset)
1742
1743 (defun company--inside-tooltip-p (event-col-row row height)
1744 (let* ((ovl company-pseudo-tooltip-overlay)
1745 (column (overlay-get ovl 'company-column))
1746 (width (overlay-get ovl 'company-width))
1747 (evt-col (car event-col-row))
1748 (evt-row (cdr event-col-row)))
1749 (and (>= evt-col column)
1750 (< evt-col (+ column width))
1751 (if (> height 0)
1752 (and (> evt-row row)
1753 (<= evt-row (+ row height) ))
1754 (and (< evt-row row)
1755 (>= evt-row (+ row height)))))))
1756
1757 (defun company--event-col-row (event)
1758 (let* ((col-row (posn-actual-col-row (event-start event)))
1759 (col (car col-row))
1760 (row (cdr col-row)))
1761 (cl-incf col (window-hscroll))
1762 (and header-line-format
1763 (version< "24" emacs-version)
1764 (cl-decf row))
1765 (cons col row)))
1766
1767 (defun company-select-mouse (event)
1768 "Select the candidate picked by the mouse."
1769 (interactive "e")
1770 (let ((event-col-row (company--event-col-row event))
1771 (ovl-row (company--row))
1772 (ovl-height (and company-pseudo-tooltip-overlay
1773 (min (overlay-get company-pseudo-tooltip-overlay
1774 'company-height)
1775 company-candidates-length))))
1776 (if (and ovl-height
1777 (company--inside-tooltip-p event-col-row ovl-row ovl-height))
1778 (progn
1779 (company-set-selection (+ (cdr event-col-row)
1780 (1- company-tooltip-offset)
1781 (if (and (eq company-tooltip-offset-display 'lines)
1782 (not (zerop company-tooltip-offset)))
1783 -1 0)
1784 (- ovl-row)
1785 (if (< ovl-height 0)
1786 (- 1 ovl-height)
1787 0)))
1788 t)
1789 (company-abort)
1790 (company--unread-last-input)
1791 nil)))
1792
1793 (defun company-complete-mouse (event)
1794 "Insert the candidate picked by the mouse."
1795 (interactive "e")
1796 (when (company-select-mouse event)
1797 (company-complete-selection)))
1798
1799 (defun company-complete-selection ()
1800 "Insert the selected candidate."
1801 (interactive)
1802 (when (company-manual-begin)
1803 (let ((result (nth company-selection company-candidates)))
1804 (company-finish result))))
1805
1806 (defun company-complete-common ()
1807 "Insert the common part of all candidates."
1808 (interactive)
1809 (when (company-manual-begin)
1810 (if (and (not (cdr company-candidates))
1811 (equal company-common (car company-candidates)))
1812 (company-complete-selection)
1813 (when company-common
1814 (company--insert-candidate company-common)))))
1815
1816 (defun company-complete ()
1817 "Insert the common part of all candidates or the current selection.
1818 The first time this is called, the common part is inserted, the second
1819 time, or when the selection has been changed, the selected candidate is
1820 inserted."
1821 (interactive)
1822 (when (company-manual-begin)
1823 (if (or company-selection-changed
1824 (eq last-command 'company-complete-common))
1825 (call-interactively 'company-complete-selection)
1826 (call-interactively 'company-complete-common)
1827 (setq this-command 'company-complete-common))))
1828
1829 (defun company-complete-number (n)
1830 "Insert the Nth candidate.
1831 To show the number next to the candidates in some back-ends, enable
1832 `company-show-numbers'."
1833 (when (company-manual-begin)
1834 (and (or (< n 1) (> n company-candidates-length))
1835 (error "No candidate number %d" n))
1836 (cl-decf n)
1837 (company-finish (nth n company-candidates))))
1838
1839 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1840
1841 (defconst company-space-strings-limit 100)
1842
1843 (defconst company-space-strings
1844 (let (lst)
1845 (dotimes (i company-space-strings-limit)
1846 (push (make-string (- company-space-strings-limit 1 i) ?\ ) lst))
1847 (apply 'vector lst)))
1848
1849 (defun company-space-string (len)
1850 (if (< len company-space-strings-limit)
1851 (aref company-space-strings len)
1852 (make-string len ?\ )))
1853
1854 (defun company-safe-substring (str from &optional to)
1855 (if (> from (string-width str))
1856 ""
1857 (with-temp-buffer
1858 (insert str)
1859 (move-to-column from)
1860 (let ((beg (point)))
1861 (if to
1862 (progn
1863 (move-to-column to)
1864 (concat (buffer-substring beg (point))
1865 (let ((padding (- to (current-column))))
1866 (when (> padding 0)
1867 (company-space-string padding)))))
1868 (buffer-substring beg (point-max)))))))
1869
1870 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1871
1872 (defvar-local company-last-metadata nil)
1873
1874 (defun company-fetch-metadata ()
1875 (let ((selected (nth company-selection company-candidates)))
1876 (unless (eq selected (car company-last-metadata))
1877 (setq company-last-metadata
1878 (cons selected (company-call-backend 'meta selected))))
1879 (cdr company-last-metadata)))
1880
1881 (defun company-doc-buffer (&optional string)
1882 (with-current-buffer (get-buffer-create "*company-documentation*")
1883 (erase-buffer)
1884 (when string
1885 (save-excursion
1886 (insert string)))
1887 (current-buffer)))
1888
1889 (defvar company--electric-commands
1890 '(scroll-other-window scroll-other-window-down)
1891 "List of Commands that won't break out of electric commands.")
1892
1893 (defmacro company--electric-do (&rest body)
1894 (declare (indent 0) (debug t))
1895 `(when (company-manual-begin)
1896 (save-window-excursion
1897 (let ((height (window-height))
1898 (row (company--row))
1899 cmd)
1900 ,@body
1901 (and (< (window-height) height)
1902 (< (- (window-height) row 2) company-tooltip-limit)
1903 (recenter (- (window-height) row 2)))
1904 (while (memq (setq cmd (key-binding (vector (list (read-event)))))
1905 company--electric-commands)
1906 (call-interactively cmd))
1907 (company--unread-last-input)))))
1908
1909 (defun company--unread-last-input ()
1910 (when last-input-event
1911 (clear-this-command-keys t)
1912 (setq unread-command-events (list last-input-event))))
1913
1914 (defun company-show-doc-buffer ()
1915 "Temporarily show the documentation buffer for the selection."
1916 (interactive)
1917 (company--electric-do
1918 (let* ((selected (nth company-selection company-candidates))
1919 (doc-buffer (or (company-call-backend 'doc-buffer selected)
1920 (error "No documentation available"))))
1921 (with-current-buffer doc-buffer
1922 (goto-char (point-min)))
1923 (display-buffer doc-buffer t))))
1924 (put 'company-show-doc-buffer 'company-keep t)
1925
1926 (defun company-show-location ()
1927 "Temporarily display a buffer showing the selected candidate in context."
1928 (interactive)
1929 (company--electric-do
1930 (let* ((selected (nth company-selection company-candidates))
1931 (location (company-call-backend 'location selected))
1932 (pos (or (cdr location) (error "No location available")))
1933 (buffer (or (and (bufferp (car location)) (car location))
1934 (find-file-noselect (car location) t))))
1935 (with-selected-window (display-buffer buffer t)
1936 (save-restriction
1937 (widen)
1938 (if (bufferp (car location))
1939 (goto-char pos)
1940 (goto-char (point-min))
1941 (forward-line (1- pos))))
1942 (set-window-start nil (point))))))
1943 (put 'company-show-location 'company-keep t)
1944
1945 ;;; package functions ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1946
1947 (defvar-local company-callback nil)
1948
1949 (defun company-remove-callback (&optional ignored)
1950 (remove-hook 'company-completion-finished-hook company-callback t)
1951 (remove-hook 'company-completion-cancelled-hook 'company-remove-callback t)
1952 (remove-hook 'company-completion-finished-hook 'company-remove-callback t))
1953
1954 (defun company-begin-backend (backend &optional callback)
1955 "Start a completion at point using BACKEND."
1956 (interactive (let ((val (completing-read "Company back-end: "
1957 obarray
1958 'functionp nil "company-")))
1959 (when val
1960 (list (intern val)))))
1961 (when (setq company-callback callback)
1962 (add-hook 'company-completion-finished-hook company-callback nil t))
1963 (add-hook 'company-completion-cancelled-hook 'company-remove-callback nil t)
1964 (add-hook 'company-completion-finished-hook 'company-remove-callback nil t)
1965 (setq company-backend backend)
1966 ;; Return non-nil if active.
1967 (or (company-manual-begin)
1968 (error "Cannot complete at point")))
1969
1970 (defun company-begin-with (candidates
1971 &optional prefix-length require-match callback)
1972 "Start a completion at point.
1973 CANDIDATES is the list of candidates to use and PREFIX-LENGTH is the length
1974 of the prefix that already is in the buffer before point.
1975 It defaults to 0.
1976
1977 CALLBACK is a function called with the selected result if the user
1978 successfully completes the input.
1979
1980 Example: \(company-begin-with '\(\"foo\" \"foobar\" \"foobarbaz\"\)\)"
1981 (let ((begin-marker (copy-marker (point) t)))
1982 (company-begin-backend
1983 (lambda (command &optional arg &rest ignored)
1984 (pcase command
1985 (`prefix
1986 (when (equal (point) (marker-position begin-marker))
1987 (buffer-substring (- (point) (or prefix-length 0)) (point))))
1988 (`candidates
1989 (all-completions arg candidates))
1990 (`require-match
1991 require-match)))
1992 callback)))
1993
1994 (defun company-version (&optional show-version)
1995 "Get the Company version as string.
1996
1997 If SHOW-VERSION is non-nil, show the version in the echo area."
1998 (interactive (list t))
1999 (with-temp-buffer
2000 (insert-file-contents (find-library-name "company"))
2001 (require 'lisp-mnt)
2002 (if show-version
2003 (message "Company version: %s" (lm-version))
2004 (lm-version))))
2005
2006 ;;; pseudo-tooltip ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2007
2008 (defvar-local company-pseudo-tooltip-overlay nil)
2009
2010 (defvar-local company-tooltip-offset 0)
2011
2012 (defun company-tooltip--lines-update-offset (selection num-lines limit)
2013 (cl-decf limit 2)
2014 (setq company-tooltip-offset
2015 (max (min selection company-tooltip-offset)
2016 (- selection -1 limit)))
2017
2018 (when (<= company-tooltip-offset 1)
2019 (cl-incf limit)
2020 (setq company-tooltip-offset 0))
2021
2022 (when (>= company-tooltip-offset (- num-lines limit 1))
2023 (cl-incf limit)
2024 (when (= selection (1- num-lines))
2025 (cl-decf company-tooltip-offset)
2026 (when (<= company-tooltip-offset 1)
2027 (setq company-tooltip-offset 0)
2028 (cl-incf limit))))
2029
2030 limit)
2031
2032 (defun company-tooltip--simple-update-offset (selection _num-lines limit)
2033 (setq company-tooltip-offset
2034 (if (< selection company-tooltip-offset)
2035 selection
2036 (max company-tooltip-offset
2037 (- selection limit -1)))))
2038
2039 ;;; propertize
2040
2041 (defsubst company-round-tab (arg)
2042 (* (/ (+ arg tab-width) tab-width) tab-width))
2043
2044 (defun company-plainify (str)
2045 (let ((prefix (get-text-property 0 'line-prefix str)))
2046 (when prefix ; Keep the original value unmodified, for no special reason.
2047 (setq str (concat prefix str))
2048 (remove-text-properties 0 (length str) '(line-prefix) str)))
2049 (let* ((pieces (split-string str "\t"))
2050 (copy pieces))
2051 (while (cdr copy)
2052 (setcar copy (company-safe-substring
2053 (car copy) 0 (company-round-tab (string-width (car copy)))))
2054 (pop copy))
2055 (apply 'concat pieces)))
2056
2057 (defun company-fill-propertize (value annotation width selected left right)
2058 (let* ((margin (length left))
2059 (common (+ (or (company-call-backend 'match value)
2060 (length company-common)) margin))
2061 (ann-ralign company-tooltip-align-annotations)
2062 (ann-truncate (< width
2063 (+ (length value) (length annotation)
2064 (if ann-ralign 1 0))))
2065 (ann-start (+ margin
2066 (if ann-ralign
2067 (if ann-truncate
2068 (1+ (length value))
2069 (- width (length annotation)))
2070 (length value))))
2071 (ann-end (min (+ ann-start (length annotation)) (+ margin width)))
2072 (line (concat left
2073 (if (or ann-truncate (not ann-ralign))
2074 (company-safe-substring
2075 (concat value
2076 (when (and annotation ann-ralign) " ")
2077 annotation)
2078 0 width)
2079 (concat
2080 (company-safe-substring value 0
2081 (- width (length annotation)))
2082 annotation))
2083 right)))
2084 (setq width (+ width margin (length right)))
2085
2086 (add-text-properties 0 width '(face company-tooltip
2087 mouse-face company-tooltip-mouse)
2088 line)
2089 (add-text-properties margin common
2090 '(face company-tooltip-common
2091 mouse-face company-tooltip-mouse)
2092 line)
2093 (when (< ann-start ann-end)
2094 (add-text-properties ann-start ann-end
2095 '(face company-tooltip-annotation
2096 mouse-face company-tooltip-mouse)
2097 line))
2098 (when selected
2099 (if (and company-search-string
2100 (string-match (regexp-quote company-search-string) value
2101 (length company-prefix)))
2102 (let ((beg (+ margin (match-beginning 0)))
2103 (end (+ margin (match-end 0))))
2104 (add-text-properties beg end '(face company-tooltip-selection)
2105 line)
2106 (when (< beg common)
2107 (add-text-properties beg common
2108 '(face company-tooltip-common-selection)
2109 line)))
2110 (add-text-properties 0 width '(face company-tooltip-selection
2111 mouse-face company-tooltip-selection)
2112 line)
2113 (add-text-properties margin common
2114 '(face company-tooltip-common-selection
2115 mouse-face company-tooltip-selection)
2116 line)))
2117 line))
2118
2119 ;;; replace
2120
2121 (defun company-buffer-lines (beg end)
2122 (goto-char beg)
2123 (let (lines)
2124 (while (and (= 1 (vertical-motion 1))
2125 (<= (point) end))
2126 (let ((bound (min end (1- (point)))))
2127 ;; A visual line can contain several physical lines (e.g. with outline's
2128 ;; folding overlay). Take only the first one.
2129 (push (buffer-substring beg
2130 (save-excursion
2131 (goto-char beg)
2132 (re-search-forward "$" bound 'move)
2133 (point)))
2134 lines))
2135 (setq beg (point)))
2136 (unless (eq beg end)
2137 (push (buffer-substring beg end) lines))
2138 (nreverse lines)))
2139
2140 (defun company-modify-line (old new offset)
2141 (concat (company-safe-substring old 0 offset)
2142 new
2143 (company-safe-substring old (+ offset (length new)))))
2144
2145 (defsubst company--length-limit (lst limit)
2146 (if (nthcdr limit lst)
2147 limit
2148 (length lst)))
2149
2150 (defun company--replacement-string (lines old column nl &optional align-top)
2151 (cl-decf column company-tooltip-margin)
2152
2153 (when (and align-top company-tooltip-flip-when-above)
2154 (setq lines (reverse lines)))
2155
2156 (let ((width (length (car lines)))
2157 (remaining-cols (- (+ (company--window-width) (window-hscroll))
2158 column)))
2159 (when (> width remaining-cols)
2160 (cl-decf column (- width remaining-cols))))
2161
2162 (let ((offset (and (< column 0) (- column)))
2163 new)
2164 (when offset
2165 (setq column 0))
2166 (when align-top
2167 ;; untouched lines first
2168 (dotimes (_ (- (length old) (length lines)))
2169 (push (pop old) new)))
2170 ;; length into old lines.
2171 (while old
2172 (push (company-modify-line (pop old)
2173 (company--offset-line (pop lines) offset)
2174 column) new))
2175 ;; Append whole new lines.
2176 (while lines
2177 (push (concat (company-space-string column)
2178 (company--offset-line (pop lines) offset))
2179 new))
2180
2181 (let ((str (concat (when nl "\n")
2182 (mapconcat 'identity (nreverse new) "\n")
2183 "\n")))
2184 (font-lock-append-text-property 0 (length str) 'face 'default str)
2185 str)))
2186
2187 (defun company--offset-line (line offset)
2188 (if (and offset line)
2189 (substring line offset)
2190 line))
2191
2192 (defun company--create-lines (selection limit)
2193 (let ((len company-candidates-length)
2194 (numbered 99999)
2195 (window-width (company--window-width))
2196 lines
2197 width
2198 lines-copy
2199 items
2200 previous
2201 remainder
2202 scrollbar-bounds)
2203
2204 ;; Maybe clear old offset.
2205 (when (< len (+ company-tooltip-offset limit))
2206 (setq company-tooltip-offset 0))
2207
2208 ;; Scroll to offset.
2209 (if (eq company-tooltip-offset-display 'lines)
2210 (setq limit (company-tooltip--lines-update-offset selection len limit))
2211 (company-tooltip--simple-update-offset selection len limit))
2212
2213 (cond
2214 ((eq company-tooltip-offset-display 'scrollbar)
2215 (setq scrollbar-bounds (company--scrollbar-bounds company-tooltip-offset
2216 limit len)))
2217 ((eq company-tooltip-offset-display 'lines)
2218 (when (> company-tooltip-offset 0)
2219 (setq previous (format "...(%d)" company-tooltip-offset)))
2220 (setq remainder (- len limit company-tooltip-offset)
2221 remainder (when (> remainder 0)
2222 (setq remainder (format "...(%d)" remainder))))))
2223
2224 (cl-decf selection company-tooltip-offset)
2225 (setq width (max (length previous) (length remainder))
2226 lines (nthcdr company-tooltip-offset company-candidates)
2227 len (min limit len)
2228 lines-copy lines)
2229
2230 (cl-decf window-width (* 2 company-tooltip-margin))
2231 (when scrollbar-bounds (cl-decf window-width))
2232
2233 (dotimes (_ len)
2234 (let* ((value (pop lines-copy))
2235 (annotation (company-call-backend 'annotation value)))
2236 (when (and annotation company-tooltip-align-annotations)
2237 ;; `lisp-completion-at-point' adds a space.
2238 (setq annotation (comment-string-strip annotation t nil)))
2239 (push (cons value annotation) items)
2240 (setq width (max (+ (length value)
2241 (if (and annotation company-tooltip-align-annotations)
2242 (1+ (length annotation))
2243 (length annotation)))
2244 width))))
2245
2246 (setq width (min window-width
2247 (max company-tooltip-minimum-width
2248 (if (and company-show-numbers
2249 (< company-tooltip-offset 10))
2250 (+ 2 width)
2251 width))))
2252
2253 ;; number can make tooltip too long
2254 (when company-show-numbers
2255 (setq numbered company-tooltip-offset))
2256
2257 (let ((items (nreverse items)) new)
2258 (when previous
2259 (push (company--scrollpos-line previous width) new))
2260
2261 (dotimes (i len)
2262 (let* ((item (pop items))
2263 (str (company-reformat (car item)))
2264 (annotation (cdr item))
2265 (right (company-space-string company-tooltip-margin))
2266 (width width))
2267 (when (< numbered 10)
2268 (cl-decf width 2)
2269 (cl-incf numbered)
2270 (setq right (concat (format " %d" (mod numbered 10)) right)))
2271 (push (concat
2272 (company-fill-propertize str annotation
2273 width (equal i selection)
2274 (company-space-string
2275 company-tooltip-margin)
2276 right)
2277 (when scrollbar-bounds
2278 (company--scrollbar i scrollbar-bounds)))
2279 new)))
2280
2281 (when remainder
2282 (push (company--scrollpos-line remainder width) new))
2283
2284 (nreverse new))))
2285
2286 (defun company--scrollbar-bounds (offset limit length)
2287 (when (> length limit)
2288 (let* ((size (ceiling (* limit (float limit)) length))
2289 (lower (floor (* limit (float offset)) length))
2290 (upper (+ lower size -1)))
2291 (cons lower upper))))
2292
2293 (defun company--scrollbar (i bounds)
2294 (propertize " " 'face
2295 (if (and (>= i (car bounds)) (<= i (cdr bounds)))
2296 'company-scrollbar-fg
2297 'company-scrollbar-bg)))
2298
2299 (defun company--scrollpos-line (text width)
2300 (propertize (concat (company-space-string company-tooltip-margin)
2301 (company-safe-substring text 0 width)
2302 (company-space-string company-tooltip-margin))
2303 'face 'company-tooltip))
2304
2305 ;; show
2306
2307 (defsubst company--window-inner-height ()
2308 (let ((edges (window-inside-edges)))
2309 (- (nth 3 edges) (nth 1 edges))))
2310
2311 (defsubst company--window-width ()
2312 (let ((ww (window-width)))
2313 ;; Account for the line continuation column.
2314 (when (zerop (cadr (window-fringes)))
2315 (cl-decf ww))
2316 (unless (or (display-graphic-p)
2317 (version< "24.3.1" emacs-version))
2318 ;; Emacs 24.3 and earlier included margins
2319 ;; in window-width when in TTY.
2320 (cl-decf ww
2321 (let ((margins (window-margins)))
2322 (+ (or (car margins) 0)
2323 (or (cdr margins) 0)))))
2324 ww))
2325
2326 (defun company--pseudo-tooltip-height ()
2327 "Calculate the appropriate tooltip height.
2328 Returns a negative number if the tooltip should be displayed above point."
2329 (let* ((lines (company--row))
2330 (below (- (company--window-inner-height) 1 lines)))
2331 (if (and (< below (min company-tooltip-minimum company-candidates-length))
2332 (> lines below))
2333 (- (max 3 (min company-tooltip-limit lines)))
2334 (max 3 (min company-tooltip-limit below)))))
2335
2336 (defun company-pseudo-tooltip-show (row column selection)
2337 (company-pseudo-tooltip-hide)
2338 (save-excursion
2339
2340 (let* ((height (company--pseudo-tooltip-height))
2341 above)
2342
2343 (when (< height 0)
2344 (setq row (+ row height -1)
2345 above t))
2346
2347 (let* ((nl (< (move-to-window-line row) row))
2348 (beg (point))
2349 (end (save-excursion
2350 (move-to-window-line (+ row (abs height)))
2351 (point)))
2352 (ov (make-overlay beg end))
2353 (args (list (mapcar 'company-plainify
2354 (company-buffer-lines beg end))
2355 column nl above)))
2356
2357 (setq company-pseudo-tooltip-overlay ov)
2358 (overlay-put ov 'company-replacement-args args)
2359
2360 (let ((lines (company--create-lines selection (abs height))))
2361 (overlay-put ov 'company-after
2362 (apply 'company--replacement-string lines args))
2363 (overlay-put ov 'company-width (string-width (car lines))))
2364
2365 (overlay-put ov 'company-column column)
2366 (overlay-put ov 'company-height height)))))
2367
2368 (defun company-pseudo-tooltip-show-at-point (pos)
2369 (let ((row (company--row pos))
2370 (col (company--column pos)))
2371 (company-pseudo-tooltip-show (1+ row) col company-selection)))
2372
2373 (defun company-pseudo-tooltip-edit (selection)
2374 (let* ((height (overlay-get company-pseudo-tooltip-overlay 'company-height))
2375 (lines (company--create-lines selection (abs height))))
2376 (overlay-put company-pseudo-tooltip-overlay 'company-width
2377 (string-width (car lines)))
2378 (overlay-put company-pseudo-tooltip-overlay 'company-after
2379 (apply 'company--replacement-string
2380 lines
2381 (overlay-get company-pseudo-tooltip-overlay
2382 'company-replacement-args)))))
2383
2384 (defun company-pseudo-tooltip-hide ()
2385 (when company-pseudo-tooltip-overlay
2386 (delete-overlay company-pseudo-tooltip-overlay)
2387 (setq company-pseudo-tooltip-overlay nil)))
2388
2389 (defun company-pseudo-tooltip-hide-temporarily ()
2390 (when (overlayp company-pseudo-tooltip-overlay)
2391 (overlay-put company-pseudo-tooltip-overlay 'invisible nil)
2392 (overlay-put company-pseudo-tooltip-overlay 'line-prefix nil)
2393 (overlay-put company-pseudo-tooltip-overlay 'after-string nil)))
2394
2395 (defun company-pseudo-tooltip-unhide ()
2396 (when company-pseudo-tooltip-overlay
2397 (overlay-put company-pseudo-tooltip-overlay 'invisible t)
2398 ;; Beat outline's folding overlays, at least.
2399 (overlay-put company-pseudo-tooltip-overlay 'priority 1)
2400 ;; No (extra) prefix for the first line.
2401 (overlay-put company-pseudo-tooltip-overlay 'line-prefix "")
2402 (overlay-put company-pseudo-tooltip-overlay 'after-string
2403 (overlay-get company-pseudo-tooltip-overlay 'company-after))
2404 (overlay-put company-pseudo-tooltip-overlay 'window (selected-window))))
2405
2406 (defun company-pseudo-tooltip-guard ()
2407 (buffer-substring-no-properties
2408 (point) (overlay-start company-pseudo-tooltip-overlay)))
2409
2410 (defun company-pseudo-tooltip-frontend (command)
2411 "`company-mode' front-end similar to a tooltip but based on overlays."
2412 (cl-case command
2413 (pre-command (company-pseudo-tooltip-hide-temporarily))
2414 (post-command
2415 (let ((old-height (if (overlayp company-pseudo-tooltip-overlay)
2416 (overlay-get company-pseudo-tooltip-overlay
2417 'company-height)
2418 0))
2419 (new-height (company--pseudo-tooltip-height)))
2420 (unless (and (>= (* old-height new-height) 0)
2421 (>= (abs old-height) (abs new-height))
2422 (equal (company-pseudo-tooltip-guard)
2423 (overlay-get company-pseudo-tooltip-overlay
2424 'company-guard)))
2425 ;; Redraw needed.
2426 (company-pseudo-tooltip-show-at-point (- (point)
2427 (length company-prefix)))
2428 (overlay-put company-pseudo-tooltip-overlay
2429 'company-guard (company-pseudo-tooltip-guard))))
2430 (company-pseudo-tooltip-unhide))
2431 (hide (company-pseudo-tooltip-hide)
2432 (setq company-tooltip-offset 0))
2433 (update (when (overlayp company-pseudo-tooltip-overlay)
2434 (company-pseudo-tooltip-edit company-selection)))))
2435
2436 (defun company-pseudo-tooltip-unless-just-one-frontend (command)
2437 "`company-pseudo-tooltip-frontend', but not shown for single candidates."
2438 (unless (and (eq command 'post-command)
2439 (company--show-inline-p))
2440 (company-pseudo-tooltip-frontend command)))
2441
2442 ;;; overlay ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2443
2444 (defvar-local company-preview-overlay nil)
2445
2446 (defun company-preview-show-at-point (pos)
2447 (company-preview-hide)
2448
2449 (setq company-preview-overlay (make-overlay pos (1+ pos)))
2450
2451 (let ((completion (nth company-selection company-candidates)))
2452 (setq completion (propertize completion 'face 'company-preview))
2453 (add-text-properties 0 (length company-common)
2454 '(face company-preview-common) completion)
2455
2456 ;; Add search string
2457 (and company-search-string
2458 (string-match (regexp-quote company-search-string) completion)
2459 (add-text-properties (match-beginning 0)
2460 (match-end 0)
2461 '(face company-preview-search)
2462 completion))
2463
2464 (setq completion (company-strip-prefix completion))
2465
2466 (and (equal pos (point))
2467 (not (equal completion ""))
2468 (add-text-properties 0 1 '(cursor t) completion))
2469
2470 (overlay-put company-preview-overlay 'display
2471 (concat completion (unless (eq pos (point-max))
2472 (buffer-substring pos (1+ pos)))))
2473 (overlay-put company-preview-overlay 'window (selected-window))))
2474
2475 (defun company-preview-hide ()
2476 (when company-preview-overlay
2477 (delete-overlay company-preview-overlay)
2478 (setq company-preview-overlay nil)))
2479
2480 (defun company-preview-frontend (command)
2481 "`company-mode' front-end showing the selection as if it had been inserted."
2482 (pcase command
2483 (`pre-command (company-preview-hide))
2484 (`post-command (company-preview-show-at-point (point)))
2485 (`hide (company-preview-hide))))
2486
2487 (defun company-preview-if-just-one-frontend (command)
2488 "`company-preview-frontend', but only shown for single candidates."
2489 (when (or (not (eq command 'post-command))
2490 (company--show-inline-p))
2491 (company-preview-frontend command)))
2492
2493 (defun company--show-inline-p ()
2494 (and (not (cdr company-candidates))
2495 company-common
2496 (string-prefix-p company-prefix company-common
2497 (company-call-backend 'ignore-case))))
2498
2499 ;;; echo ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2500
2501 (defvar-local company-echo-last-msg nil)
2502
2503 (defvar company-echo-timer nil)
2504
2505 (defvar company-echo-delay .01)
2506
2507 (defun company-echo-show (&optional getter)
2508 (when getter
2509 (setq company-echo-last-msg (funcall getter)))
2510 (let ((message-log-max nil))
2511 (if company-echo-last-msg
2512 (message "%s" company-echo-last-msg)
2513 (message ""))))
2514
2515 (defun company-echo-show-soon (&optional getter)
2516 (when company-echo-timer
2517 (cancel-timer company-echo-timer))
2518 (setq company-echo-timer (run-with-timer 0 nil 'company-echo-show getter)))
2519
2520 (defsubst company-echo-show-when-idle (&optional getter)
2521 (when (sit-for company-echo-delay)
2522 (company-echo-show getter)))
2523
2524 (defun company-echo-format ()
2525
2526 (let ((limit (window-width (minibuffer-window)))
2527 (len -1)
2528 ;; Roll to selection.
2529 (candidates (nthcdr company-selection company-candidates))
2530 (i (if company-show-numbers company-selection 99999))
2531 comp msg)
2532
2533 (while candidates
2534 (setq comp (company-reformat (pop candidates))
2535 len (+ len 1 (length comp)))
2536 (if (< i 10)
2537 ;; Add number.
2538 (progn
2539 (setq comp (propertize (format "%d: %s" i comp)
2540 'face 'company-echo))
2541 (cl-incf len 3)
2542 (cl-incf i)
2543 (add-text-properties 3 (+ 3 (length company-common))
2544 '(face company-echo-common) comp))
2545 (setq comp (propertize comp 'face 'company-echo))
2546 (add-text-properties 0 (length company-common)
2547 '(face company-echo-common) comp))
2548 (if (>= len limit)
2549 (setq candidates nil)
2550 (push comp msg)))
2551
2552 (mapconcat 'identity (nreverse msg) " ")))
2553
2554 (defun company-echo-strip-common-format ()
2555
2556 (let ((limit (window-width (minibuffer-window)))
2557 (len (+ (length company-prefix) 2))
2558 ;; Roll to selection.
2559 (candidates (nthcdr company-selection company-candidates))
2560 (i (if company-show-numbers company-selection 99999))
2561 msg comp)
2562
2563 (while candidates
2564 (setq comp (company-strip-prefix (pop candidates))
2565 len (+ len 2 (length comp)))
2566 (when (< i 10)
2567 ;; Add number.
2568 (setq comp (format "%s (%d)" comp i))
2569 (cl-incf len 4)
2570 (cl-incf i))
2571 (if (>= len limit)
2572 (setq candidates nil)
2573 (push (propertize comp 'face 'company-echo) msg)))
2574
2575 (concat (propertize company-prefix 'face 'company-echo-common) "{"
2576 (mapconcat 'identity (nreverse msg) ", ")
2577 "}")))
2578
2579 (defun company-echo-hide ()
2580 (unless (equal company-echo-last-msg "")
2581 (setq company-echo-last-msg "")
2582 (company-echo-show)))
2583
2584 (defun company-echo-frontend (command)
2585 "`company-mode' front-end showing the candidates in the echo area."
2586 (pcase command
2587 (`post-command (company-echo-show-soon 'company-echo-format))
2588 (`hide (company-echo-hide))))
2589
2590 (defun company-echo-strip-common-frontend (command)
2591 "`company-mode' front-end showing the candidates in the echo area."
2592 (pcase command
2593 (`post-command (company-echo-show-soon 'company-echo-strip-common-format))
2594 (`hide (company-echo-hide))))
2595
2596 (defun company-echo-metadata-frontend (command)
2597 "`company-mode' front-end showing the documentation in the echo area."
2598 (pcase command
2599 (`post-command (company-echo-show-when-idle 'company-fetch-metadata))
2600 (`hide (company-echo-hide))))
2601
2602 (provide 'company)
2603 ;;; company.el ends here