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