]> code.delx.au - gnu-emacs-elpa/blob - company.el
company-search-map: Include <up> and <down> bindings
[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 (kbd "<down>") 'company-select-next-or-abort)
1714 (define-key keymap (kbd "<up>") 'company-select-previous-or-abort)
1715 (define-key keymap "\e\e\e" 'company-search-other-char)
1716 (define-key keymap [escape escape escape] 'company-search-other-char)
1717 (define-key keymap (kbd "DEL") 'company-search-delete-char)
1718 (define-key keymap [backspace] 'company-search-delete-char)
1719 (define-key keymap "\C-g" 'company-search-abort)
1720 (define-key keymap "\C-s" 'company-search-repeat-forward)
1721 (define-key keymap "\C-r" 'company-search-repeat-backward)
1722 (define-key keymap "\C-o" 'company-search-toggle-filtering)
1723 keymap)
1724 "Keymap used for incrementally searching the completion candidates.")
1725
1726 (define-minor-mode company-search-mode
1727 "Search mode for completion candidates.
1728 Don't start this directly, use `company-search-candidates' or
1729 `company-filter-candidates'."
1730 nil company-search-lighter nil
1731 (if company-search-mode
1732 (if (company-manual-begin)
1733 (progn
1734 (setq company--search-old-selection company-selection)
1735 (company-call-frontends 'update)
1736 (company-enable-overriding-keymap company-search-map))
1737 (setq company-search-mode nil))
1738 (kill-local-variable 'company-search-string)
1739 (kill-local-variable 'company-search-filtering)
1740 (kill-local-variable 'company--search-old-selection)
1741 (when company-backend
1742 (company--search-update-predicate "")
1743 (company-call-frontends 'update))
1744 (company-enable-overriding-keymap company-active-map)))
1745
1746 (defun company--search-assert-enabled ()
1747 (company-assert-enabled)
1748 (unless company-search-mode
1749 (company-uninstall-map)
1750 (error "Company not in search mode")))
1751
1752 (defun company-search-candidates ()
1753 "Start searching the completion candidates incrementally.
1754
1755 \\<company-search-map>Search can be controlled with the commands:
1756 - `company-search-repeat-forward' (\\[company-search-repeat-forward])
1757 - `company-search-repeat-backward' (\\[company-search-repeat-backward])
1758 - `company-search-abort' (\\[company-search-abort])
1759 - `company-search-delete-char' (\\[company-search-delete-char])
1760
1761 Regular characters are appended to the search string.
1762
1763 The command `company-search-toggle-filtering' (\\[company-search-toggle-filtering])
1764 uses the search string to filter the completion candidates."
1765 (interactive)
1766 (company-search-mode 1))
1767
1768 (defvar company-filter-map
1769 (let ((keymap (make-keymap)))
1770 (define-key keymap [remap company-search-printing-char]
1771 'company-filter-printing-char)
1772 (set-keymap-parent keymap company-search-map)
1773 keymap)
1774 "Keymap used for incrementally searching the completion candidates.")
1775
1776 (defun company-filter-candidates ()
1777 "Start filtering the completion candidates incrementally.
1778 This works the same way as `company-search-candidates' immediately
1779 followed by `company-search-toggle-filtering'."
1780 (interactive)
1781 (company-search-mode 1)
1782 (setq company-search-filtering t))
1783
1784 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1785
1786 (defun company-select-next ()
1787 "Select the next candidate in the list."
1788 (interactive)
1789 (when (company-manual-begin)
1790 (company-set-selection (1+ company-selection))))
1791
1792 (defun company-select-previous ()
1793 "Select the previous candidate in the list."
1794 (interactive)
1795 (when (company-manual-begin)
1796 (company-set-selection (1- company-selection))))
1797
1798 (defun company-select-next-or-abort ()
1799 "Select the next candidate if more than one, else abort
1800 and invoke the normal binding."
1801 (interactive)
1802 (if (> company-candidates-length 1)
1803 (company-select-next)
1804 (company-abort)
1805 (company--unread-last-input)))
1806
1807 (defun company-select-previous-or-abort ()
1808 "Select the previous candidate if more than one, else abort
1809 and invoke the normal binding."
1810 (interactive)
1811 (if (> company-candidates-length 1)
1812 (company-select-previous)
1813 (company-abort)
1814 (company--unread-last-input)))
1815
1816 (defun company-next-page ()
1817 "Select the candidate one page further."
1818 (interactive)
1819 (when (company-manual-begin)
1820 (company-set-selection (+ company-selection
1821 company-tooltip-limit))))
1822
1823 (defun company-previous-page ()
1824 "Select the candidate one page earlier."
1825 (interactive)
1826 (when (company-manual-begin)
1827 (company-set-selection (- company-selection
1828 company-tooltip-limit))))
1829
1830 (defvar company-pseudo-tooltip-overlay)
1831
1832 (defvar company-tooltip-offset)
1833
1834 (defun company--inside-tooltip-p (event-col-row row height)
1835 (let* ((ovl company-pseudo-tooltip-overlay)
1836 (column (overlay-get ovl 'company-column))
1837 (width (overlay-get ovl 'company-width))
1838 (evt-col (car event-col-row))
1839 (evt-row (cdr event-col-row)))
1840 (and (>= evt-col column)
1841 (< evt-col (+ column width))
1842 (if (> height 0)
1843 (and (> evt-row row)
1844 (<= evt-row (+ row height) ))
1845 (and (< evt-row row)
1846 (>= evt-row (+ row height)))))))
1847
1848 (defun company--event-col-row (event)
1849 (company--posn-col-row (event-start event)))
1850
1851 (defun company-select-mouse (event)
1852 "Select the candidate picked by the mouse."
1853 (interactive "e")
1854 (let ((event-col-row (company--event-col-row event))
1855 (ovl-row (company--row))
1856 (ovl-height (and company-pseudo-tooltip-overlay
1857 (min (overlay-get company-pseudo-tooltip-overlay
1858 'company-height)
1859 company-candidates-length))))
1860 (if (and ovl-height
1861 (company--inside-tooltip-p event-col-row ovl-row ovl-height))
1862 (progn
1863 (company-set-selection (+ (cdr event-col-row)
1864 (1- company-tooltip-offset)
1865 (if (and (eq company-tooltip-offset-display 'lines)
1866 (not (zerop company-tooltip-offset)))
1867 -1 0)
1868 (- ovl-row)
1869 (if (< ovl-height 0)
1870 (- 1 ovl-height)
1871 0)))
1872 t)
1873 (company-abort)
1874 (company--unread-last-input)
1875 nil)))
1876
1877 (defun company-complete-mouse (event)
1878 "Insert the candidate picked by the mouse."
1879 (interactive "e")
1880 (when (company-select-mouse event)
1881 (company-complete-selection)))
1882
1883 (defun company-complete-selection ()
1884 "Insert the selected candidate."
1885 (interactive)
1886 (when (company-manual-begin)
1887 (let ((result (nth company-selection company-candidates)))
1888 (company-finish result))))
1889
1890 (defun company-complete-common ()
1891 "Insert the common part of all candidates."
1892 (interactive)
1893 (when (company-manual-begin)
1894 (if (and (not (cdr company-candidates))
1895 (equal company-common (car company-candidates)))
1896 (company-complete-selection)
1897 (when company-common
1898 (company--insert-candidate company-common)))))
1899
1900 (defun company-complete-common-or-cycle ()
1901 "Insert the common part of all candidates, or select the next one."
1902 (interactive)
1903 (when (company-manual-begin)
1904 (let ((tick (buffer-chars-modified-tick)))
1905 (call-interactively 'company-complete-common)
1906 (when (eq tick (buffer-chars-modified-tick))
1907 (let ((company-selection-wrap-around t))
1908 (call-interactively 'company-select-next))))))
1909
1910 (defun company-complete ()
1911 "Insert the common part of all candidates or the current selection.
1912 The first time this is called, the common part is inserted, the second
1913 time, or when the selection has been changed, the selected candidate is
1914 inserted."
1915 (interactive)
1916 (when (company-manual-begin)
1917 (if (or company-selection-changed
1918 (eq last-command 'company-complete-common))
1919 (call-interactively 'company-complete-selection)
1920 (call-interactively 'company-complete-common)
1921 (setq this-command 'company-complete-common))))
1922
1923 (defun company-complete-number (n)
1924 "Insert the Nth candidate visible in the tooltip.
1925 To show the number next to the candidates in some back-ends, enable
1926 `company-show-numbers'. When called interactively, uses the last typed
1927 character, stripping the modifiers. That character must be a digit."
1928 (interactive
1929 (list (let* ((type (event-basic-type last-command-event))
1930 (char (if (characterp type)
1931 ;; Number on the main row.
1932 type
1933 ;; Keypad number, if bound directly.
1934 (car (last (string-to-list (symbol-name type))))))
1935 (n (- char ?0)))
1936 (if (zerop n) 10 n))))
1937 (when (company-manual-begin)
1938 (and (or (< n 1) (> n (- company-candidates-length
1939 company-tooltip-offset)))
1940 (error "No candidate number %d" n))
1941 (cl-decf n)
1942 (company-finish (nth (+ n company-tooltip-offset)
1943 company-candidates))))
1944
1945 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1946
1947 (defconst company-space-strings-limit 100)
1948
1949 (defconst company-space-strings
1950 (let (lst)
1951 (dotimes (i company-space-strings-limit)
1952 (push (make-string (- company-space-strings-limit 1 i) ?\ ) lst))
1953 (apply 'vector lst)))
1954
1955 (defun company-space-string (len)
1956 (if (< len company-space-strings-limit)
1957 (aref company-space-strings len)
1958 (make-string len ?\ )))
1959
1960 (defun company-safe-substring (str from &optional to)
1961 (if (> from (string-width str))
1962 ""
1963 (with-temp-buffer
1964 (insert str)
1965 (move-to-column from)
1966 (let ((beg (point)))
1967 (if to
1968 (progn
1969 (move-to-column to)
1970 (concat (buffer-substring beg (point))
1971 (let ((padding (- to (current-column))))
1972 (when (> padding 0)
1973 (company-space-string padding)))))
1974 (buffer-substring beg (point-max)))))))
1975
1976 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1977
1978 (defvar-local company-last-metadata nil)
1979
1980 (defun company-fetch-metadata ()
1981 (let ((selected (nth company-selection company-candidates)))
1982 (unless (eq selected (car company-last-metadata))
1983 (setq company-last-metadata
1984 (cons selected (company-call-backend 'meta selected))))
1985 (cdr company-last-metadata)))
1986
1987 (defun company-doc-buffer (&optional string)
1988 (with-current-buffer (get-buffer-create "*company-documentation*")
1989 (erase-buffer)
1990 (when string
1991 (save-excursion
1992 (insert string)))
1993 (current-buffer)))
1994
1995 (defvar company--electric-commands
1996 '(scroll-other-window scroll-other-window-down)
1997 "List of Commands that won't break out of electric commands.")
1998
1999 (defmacro company--electric-do (&rest body)
2000 (declare (indent 0) (debug t))
2001 `(when (company-manual-begin)
2002 (save-window-excursion
2003 (let ((height (window-height))
2004 (row (company--row))
2005 cmd)
2006 ,@body
2007 (and (< (window-height) height)
2008 (< (- (window-height) row 2) company-tooltip-limit)
2009 (recenter (- (window-height) row 2)))
2010 (while (memq (setq cmd (key-binding (vector (list (read-event)))))
2011 company--electric-commands)
2012 (call-interactively cmd))
2013 (company--unread-last-input)))))
2014
2015 (defun company--unread-last-input ()
2016 (when last-input-event
2017 (clear-this-command-keys t)
2018 (setq unread-command-events (list last-input-event))))
2019
2020 (defun company-show-doc-buffer ()
2021 "Temporarily show the documentation buffer for the selection."
2022 (interactive)
2023 (company--electric-do
2024 (let* ((selected (nth company-selection company-candidates))
2025 (doc-buffer (or (company-call-backend 'doc-buffer selected)
2026 (error "No documentation available"))))
2027 (with-current-buffer doc-buffer
2028 (goto-char (point-min)))
2029 (display-buffer doc-buffer t))))
2030 (put 'company-show-doc-buffer 'company-keep t)
2031
2032 (defun company-show-location ()
2033 "Temporarily display a buffer showing the selected candidate in context."
2034 (interactive)
2035 (company--electric-do
2036 (let* ((selected (nth company-selection company-candidates))
2037 (location (company-call-backend 'location selected))
2038 (pos (or (cdr location) (error "No location available")))
2039 (buffer (or (and (bufferp (car location)) (car location))
2040 (find-file-noselect (car location) t))))
2041 (with-selected-window (display-buffer buffer t)
2042 (save-restriction
2043 (widen)
2044 (if (bufferp (car location))
2045 (goto-char pos)
2046 (goto-char (point-min))
2047 (forward-line (1- pos))))
2048 (set-window-start nil (point))))))
2049 (put 'company-show-location 'company-keep t)
2050
2051 ;;; package functions ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2052
2053 (defvar-local company-callback nil)
2054
2055 (defun company-remove-callback (&optional ignored)
2056 (remove-hook 'company-completion-finished-hook company-callback t)
2057 (remove-hook 'company-completion-cancelled-hook 'company-remove-callback t)
2058 (remove-hook 'company-completion-finished-hook 'company-remove-callback t))
2059
2060 (defun company-begin-backend (backend &optional callback)
2061 "Start a completion at point using BACKEND."
2062 (interactive (let ((val (completing-read "Company back-end: "
2063 obarray
2064 'functionp nil "company-")))
2065 (when val
2066 (list (intern val)))))
2067 (when (setq company-callback callback)
2068 (add-hook 'company-completion-finished-hook company-callback nil t))
2069 (add-hook 'company-completion-cancelled-hook 'company-remove-callback nil t)
2070 (add-hook 'company-completion-finished-hook 'company-remove-callback nil t)
2071 (setq company-backend backend)
2072 ;; Return non-nil if active.
2073 (or (company-manual-begin)
2074 (error "Cannot complete at point")))
2075
2076 (defun company-begin-with (candidates
2077 &optional prefix-length require-match callback)
2078 "Start a completion at point.
2079 CANDIDATES is the list of candidates to use and PREFIX-LENGTH is the length
2080 of the prefix that already is in the buffer before point.
2081 It defaults to 0.
2082
2083 CALLBACK is a function called with the selected result if the user
2084 successfully completes the input.
2085
2086 Example: \(company-begin-with '\(\"foo\" \"foobar\" \"foobarbaz\"\)\)"
2087 (let ((begin-marker (copy-marker (point) t)))
2088 (company-begin-backend
2089 (lambda (command &optional arg &rest ignored)
2090 (pcase command
2091 (`prefix
2092 (when (equal (point) (marker-position begin-marker))
2093 (buffer-substring (- (point) (or prefix-length 0)) (point))))
2094 (`candidates
2095 (all-completions arg candidates))
2096 (`require-match
2097 require-match)))
2098 callback)))
2099
2100 (defun company-version (&optional show-version)
2101 "Get the Company version as string.
2102
2103 If SHOW-VERSION is non-nil, show the version in the echo area."
2104 (interactive (list t))
2105 (with-temp-buffer
2106 (insert-file-contents (find-library-name "company"))
2107 (require 'lisp-mnt)
2108 (if show-version
2109 (message "Company version: %s" (lm-version))
2110 (lm-version))))
2111
2112 ;;; pseudo-tooltip ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2113
2114 (defvar-local company-pseudo-tooltip-overlay nil)
2115
2116 (defvar-local company-tooltip-offset 0)
2117
2118 (defun company-tooltip--lines-update-offset (selection num-lines limit)
2119 (cl-decf limit 2)
2120 (setq company-tooltip-offset
2121 (max (min selection company-tooltip-offset)
2122 (- selection -1 limit)))
2123
2124 (when (<= company-tooltip-offset 1)
2125 (cl-incf limit)
2126 (setq company-tooltip-offset 0))
2127
2128 (when (>= company-tooltip-offset (- num-lines limit 1))
2129 (cl-incf limit)
2130 (when (= selection (1- num-lines))
2131 (cl-decf company-tooltip-offset)
2132 (when (<= company-tooltip-offset 1)
2133 (setq company-tooltip-offset 0)
2134 (cl-incf limit))))
2135
2136 limit)
2137
2138 (defun company-tooltip--simple-update-offset (selection _num-lines limit)
2139 (setq company-tooltip-offset
2140 (if (< selection company-tooltip-offset)
2141 selection
2142 (max company-tooltip-offset
2143 (- selection limit -1)))))
2144
2145 ;;; propertize
2146
2147 (defsubst company-round-tab (arg)
2148 (* (/ (+ arg tab-width) tab-width) tab-width))
2149
2150 (defun company-plainify (str)
2151 (let ((prefix (get-text-property 0 'line-prefix str)))
2152 (when prefix ; Keep the original value unmodified, for no special reason.
2153 (setq str (concat prefix str))
2154 (remove-text-properties 0 (length str) '(line-prefix) str)))
2155 (let* ((pieces (split-string str "\t"))
2156 (copy pieces))
2157 (while (cdr copy)
2158 (setcar copy (company-safe-substring
2159 (car copy) 0 (company-round-tab (string-width (car copy)))))
2160 (pop copy))
2161 (apply 'concat pieces)))
2162
2163 (defun company-fill-propertize (value annotation width selected left right)
2164 (let* ((margin (length left))
2165 (common (or (company-call-backend 'match value)
2166 (if company-common
2167 (string-width company-common)
2168 0)))
2169 (ann-ralign company-tooltip-align-annotations)
2170 (ann-truncate (< width
2171 (+ (length value) (length annotation)
2172 (if ann-ralign 1 0))))
2173 (ann-start (+ margin
2174 (if ann-ralign
2175 (if ann-truncate
2176 (1+ (length value))
2177 (- width (length annotation)))
2178 (length value))))
2179 (ann-end (min (+ ann-start (length annotation)) (+ margin width)))
2180 (line (concat left
2181 (if (or ann-truncate (not ann-ralign))
2182 (company-safe-substring
2183 (concat value
2184 (when (and annotation ann-ralign) " ")
2185 annotation)
2186 0 width)
2187 (concat
2188 (company-safe-substring value 0
2189 (- width (length annotation)))
2190 annotation))
2191 right)))
2192 (setq common (+ (min common width) margin))
2193 (setq width (+ width margin (length right)))
2194
2195 (add-text-properties 0 width '(face company-tooltip
2196 mouse-face company-tooltip-mouse)
2197 line)
2198 (add-text-properties margin common
2199 '(face company-tooltip-common
2200 mouse-face company-tooltip-mouse)
2201 line)
2202 (when (< ann-start ann-end)
2203 (add-text-properties ann-start ann-end
2204 '(face company-tooltip-annotation
2205 mouse-face company-tooltip-mouse)
2206 line))
2207 (when selected
2208 (if (and (not (string= company-search-string ""))
2209 (string-match (regexp-quote company-search-string) value
2210 (length company-prefix)))
2211 (let ((beg (+ margin (match-beginning 0)))
2212 (end (+ margin (match-end 0))))
2213 (add-text-properties beg end '(face company-tooltip-search)
2214 line))
2215 (add-text-properties 0 width '(face company-tooltip-selection
2216 mouse-face company-tooltip-selection)
2217 line)
2218 (add-text-properties margin common
2219 '(face company-tooltip-common-selection
2220 mouse-face company-tooltip-selection)
2221 line)))
2222 line))
2223
2224 (defun company--clean-string (str)
2225 (replace-regexp-in-string
2226 "\\([^[:graph:] ]\\)\\|\\(\ufeff\\)\\|[[:multibyte:]]"
2227 (lambda (match)
2228 (cond
2229 ((match-beginning 1)
2230 ;; FIXME: Better char for 'non-printable'?
2231 ;; We shouldn't get any of these, but sometimes we might.
2232 "\u2017")
2233 ((match-beginning 2)
2234 ;; Zero-width non-breakable space.
2235 "")
2236 ((> (string-width match) 1)
2237 (concat
2238 (make-string (1- (string-width match)) ?\ufeff)
2239 match))
2240 (t match)))
2241 str))
2242
2243 ;;; replace
2244
2245 (defun company-buffer-lines (beg end)
2246 (goto-char beg)
2247 (let (lines lines-moved)
2248 (while (and (not (eobp)) ; http://debbugs.gnu.org/19553
2249 (> (setq lines-moved (vertical-motion 1)) 0)
2250 (<= (point) end))
2251 (let ((bound (min end (1- (point)))))
2252 ;; A visual line can contain several physical lines (e.g. with outline's
2253 ;; folding overlay). Take only the first one.
2254 (push (buffer-substring beg
2255 (save-excursion
2256 (goto-char beg)
2257 (re-search-forward "$" bound 'move)
2258 (point)))
2259 lines))
2260 ;; One physical line can be displayed as several visual ones as well:
2261 ;; add empty strings to the list, to even the count.
2262 (dotimes (_ (1- lines-moved))
2263 (push "" lines))
2264 (setq beg (point)))
2265 (unless (eq beg end)
2266 (push (buffer-substring beg end) lines))
2267 (nreverse lines)))
2268
2269 (defun company-modify-line (old new offset)
2270 (concat (company-safe-substring old 0 offset)
2271 new
2272 (company-safe-substring old (+ offset (length new)))))
2273
2274 (defsubst company--length-limit (lst limit)
2275 (if (nthcdr limit lst)
2276 limit
2277 (length lst)))
2278
2279 (defsubst company--window-height ()
2280 (if (fboundp 'window-screen-lines)
2281 (floor (window-screen-lines))
2282 (window-body-height)))
2283
2284 (defun company--window-width ()
2285 (let ((ww (window-body-width)))
2286 ;; Account for the line continuation column.
2287 (when (zerop (cadr (window-fringes)))
2288 (cl-decf ww))
2289 (unless (or (display-graphic-p)
2290 (version< "24.3.1" emacs-version))
2291 ;; Emacs 24.3 and earlier included margins
2292 ;; in window-width when in TTY.
2293 (cl-decf ww
2294 (let ((margins (window-margins)))
2295 (+ (or (car margins) 0)
2296 (or (cdr margins) 0)))))
2297 (when (and word-wrap
2298 (version< emacs-version "24.4.51.5"))
2299 ;; http://debbugs.gnu.org/18384
2300 (cl-decf ww))
2301 ww))
2302
2303 (defun company--replacement-string (lines old column nl &optional align-top)
2304 (cl-decf column company-tooltip-margin)
2305
2306 (when (and align-top company-tooltip-flip-when-above)
2307 (setq lines (reverse lines)))
2308
2309 (let ((width (length (car lines)))
2310 (remaining-cols (- (+ (company--window-width) (window-hscroll))
2311 column)))
2312 (when (> width remaining-cols)
2313 (cl-decf column (- width remaining-cols))))
2314
2315 (let ((offset (and (< column 0) (- column)))
2316 new)
2317 (when offset
2318 (setq column 0))
2319 (when align-top
2320 ;; untouched lines first
2321 (dotimes (_ (- (length old) (length lines)))
2322 (push (pop old) new)))
2323 ;; length into old lines.
2324 (while old
2325 (push (company-modify-line (pop old)
2326 (company--offset-line (pop lines) offset)
2327 column)
2328 new))
2329 ;; Append whole new lines.
2330 (while lines
2331 (push (concat (company-space-string column)
2332 (company--offset-line (pop lines) offset))
2333 new))
2334
2335 (let ((str (concat (when nl " ")
2336 "\n"
2337 (mapconcat 'identity (nreverse new) "\n")
2338 "\n")))
2339 (font-lock-append-text-property 0 (length str) 'face 'default str)
2340 (when nl (put-text-property 0 1 'cursor t str))
2341 str)))
2342
2343 (defun company--offset-line (line offset)
2344 (if (and offset line)
2345 (substring line offset)
2346 line))
2347
2348 (defun company--create-lines (selection limit)
2349 (let ((len company-candidates-length)
2350 (window-width (company--window-width))
2351 lines
2352 width
2353 lines-copy
2354 items
2355 previous
2356 remainder
2357 scrollbar-bounds)
2358
2359 ;; Maybe clear old offset.
2360 (when (< len (+ company-tooltip-offset limit))
2361 (setq company-tooltip-offset 0))
2362
2363 ;; Scroll to offset.
2364 (if (eq company-tooltip-offset-display 'lines)
2365 (setq limit (company-tooltip--lines-update-offset selection len limit))
2366 (company-tooltip--simple-update-offset selection len limit))
2367
2368 (cond
2369 ((eq company-tooltip-offset-display 'scrollbar)
2370 (setq scrollbar-bounds (company--scrollbar-bounds company-tooltip-offset
2371 limit len)))
2372 ((eq company-tooltip-offset-display 'lines)
2373 (when (> company-tooltip-offset 0)
2374 (setq previous (format "...(%d)" company-tooltip-offset)))
2375 (setq remainder (- len limit company-tooltip-offset)
2376 remainder (when (> remainder 0)
2377 (setq remainder (format "...(%d)" remainder))))))
2378
2379 (cl-decf selection company-tooltip-offset)
2380 (setq width (max (length previous) (length remainder))
2381 lines (nthcdr company-tooltip-offset company-candidates)
2382 len (min limit len)
2383 lines-copy lines)
2384
2385 (cl-decf window-width (* 2 company-tooltip-margin))
2386 (when scrollbar-bounds (cl-decf window-width))
2387
2388 (dotimes (_ len)
2389 (let* ((value (pop lines-copy))
2390 (annotation (company-call-backend 'annotation value)))
2391 (setq value (company--clean-string (company-reformat value)))
2392 (when annotation
2393 (when company-tooltip-align-annotations
2394 ;; `lisp-completion-at-point' adds a space.
2395 (setq annotation (comment-string-strip annotation t nil)))
2396 (setq annotation (company--clean-string annotation)))
2397 (push (cons value annotation) items)
2398 (setq width (max (+ (length value)
2399 (if (and annotation company-tooltip-align-annotations)
2400 (1+ (length annotation))
2401 (length annotation)))
2402 width))))
2403
2404 (setq width (min window-width
2405 (max company-tooltip-minimum-width
2406 (if company-show-numbers
2407 (+ 2 width)
2408 width))))
2409
2410 (let ((items (nreverse items))
2411 (numbered (if company-show-numbers 0 99999))
2412 new)
2413 (when previous
2414 (push (company--scrollpos-line previous width) new))
2415
2416 (dotimes (i len)
2417 (let* ((item (pop items))
2418 (str (car item))
2419 (annotation (cdr item))
2420 (right (company-space-string company-tooltip-margin))
2421 (width width))
2422 (when (< numbered 10)
2423 (cl-decf width 2)
2424 (cl-incf numbered)
2425 (setq right (concat (format " %d" (mod numbered 10)) right)))
2426 (push (concat
2427 (company-fill-propertize str annotation
2428 width (equal i selection)
2429 (company-space-string
2430 company-tooltip-margin)
2431 right)
2432 (when scrollbar-bounds
2433 (company--scrollbar i scrollbar-bounds)))
2434 new)))
2435
2436 (when remainder
2437 (push (company--scrollpos-line remainder width) new))
2438
2439 (nreverse new))))
2440
2441 (defun company--scrollbar-bounds (offset limit length)
2442 (when (> length limit)
2443 (let* ((size (ceiling (* limit (float limit)) length))
2444 (lower (floor (* limit (float offset)) length))
2445 (upper (+ lower size -1)))
2446 (cons lower upper))))
2447
2448 (defun company--scrollbar (i bounds)
2449 (propertize " " 'face
2450 (if (and (>= i (car bounds)) (<= i (cdr bounds)))
2451 'company-scrollbar-fg
2452 'company-scrollbar-bg)))
2453
2454 (defun company--scrollpos-line (text width)
2455 (propertize (concat (company-space-string company-tooltip-margin)
2456 (company-safe-substring text 0 width)
2457 (company-space-string company-tooltip-margin))
2458 'face 'company-tooltip))
2459
2460 ;; show
2461
2462 (defun company--pseudo-tooltip-height ()
2463 "Calculate the appropriate tooltip height.
2464 Returns a negative number if the tooltip should be displayed above point."
2465 (let* ((lines (company--row))
2466 (below (- (company--window-height) 1 lines)))
2467 (if (and (< below (min company-tooltip-minimum company-candidates-length))
2468 (> lines below))
2469 (- (max 3 (min company-tooltip-limit lines)))
2470 (max 3 (min company-tooltip-limit below)))))
2471
2472 (defun company-pseudo-tooltip-show (row column selection)
2473 (company-pseudo-tooltip-hide)
2474 (save-excursion
2475
2476 (let* ((height (company--pseudo-tooltip-height))
2477 above)
2478
2479 (when (< height 0)
2480 (setq row (+ row height -1)
2481 above t))
2482
2483 (let* ((nl (< (move-to-window-line row) row))
2484 (beg (point))
2485 (end (save-excursion
2486 (move-to-window-line (+ row (abs height)))
2487 (point)))
2488 (ov (make-overlay (if nl beg (1- beg)) end nil t))
2489 (args (list (mapcar 'company-plainify
2490 (company-buffer-lines beg end))
2491 column nl above)))
2492
2493 (setq company-pseudo-tooltip-overlay ov)
2494 (overlay-put ov 'company-replacement-args args)
2495
2496 (let ((lines (company--create-lines selection (abs height))))
2497 (overlay-put ov 'company-display
2498 (apply 'company--replacement-string lines args))
2499 (overlay-put ov 'company-width (string-width (car lines))))
2500
2501 (overlay-put ov 'company-column column)
2502 (overlay-put ov 'company-height height)))))
2503
2504 (defun company-pseudo-tooltip-show-at-point (pos column-offset)
2505 (let* ((col-row (company--col-row pos))
2506 (col (- (car col-row) column-offset)))
2507 (when (< col 0) (setq col 0))
2508 (company-pseudo-tooltip-show (1+ (cdr col-row)) col company-selection)))
2509
2510 (defun company-pseudo-tooltip-edit (selection)
2511 (let* ((height (overlay-get company-pseudo-tooltip-overlay 'company-height))
2512 (lines (company--create-lines selection (abs height))))
2513 (overlay-put company-pseudo-tooltip-overlay 'company-width
2514 (string-width (car lines)))
2515 (overlay-put company-pseudo-tooltip-overlay 'company-display
2516 (apply 'company--replacement-string
2517 lines
2518 (overlay-get company-pseudo-tooltip-overlay
2519 'company-replacement-args)))))
2520
2521 (defun company-pseudo-tooltip-hide ()
2522 (when company-pseudo-tooltip-overlay
2523 (delete-overlay company-pseudo-tooltip-overlay)
2524 (setq company-pseudo-tooltip-overlay nil)))
2525
2526 (defun company-pseudo-tooltip-hide-temporarily ()
2527 (when (overlayp company-pseudo-tooltip-overlay)
2528 (overlay-put company-pseudo-tooltip-overlay 'invisible nil)
2529 (overlay-put company-pseudo-tooltip-overlay 'after-string nil)))
2530
2531 (defun company-pseudo-tooltip-unhide ()
2532 (when company-pseudo-tooltip-overlay
2533 (let* ((ov company-pseudo-tooltip-overlay)
2534 (disp (overlay-get ov 'company-display)))
2535 ;; Beat outline's folding overlays, at least.
2536 (overlay-put ov 'priority 1)
2537 ;; `display' could be better (http://debbugs.gnu.org/18285), but it
2538 ;; doesn't work when the overlay is empty, which is what happens at eob.
2539 ;; It also seems to interact badly with `cursor'.
2540 ;; We deal with priorities by having the overlay start before the newline.
2541 (overlay-put ov 'after-string disp)
2542 (overlay-put ov 'invisible t)
2543 (overlay-put ov 'window (selected-window)))))
2544
2545 (defun company-pseudo-tooltip-guard ()
2546 (cons
2547 (save-excursion (beginning-of-visual-line))
2548 (let ((ov company-pseudo-tooltip-overlay)
2549 (overhang (save-excursion (end-of-visual-line)
2550 (- (line-end-position) (point)))))
2551 (when (>= (overlay-get ov 'company-height) 0)
2552 (cons
2553 (buffer-substring-no-properties (point) (overlay-start ov))
2554 (when (>= overhang 0) overhang))))))
2555
2556 (defun company-pseudo-tooltip-frontend (command)
2557 "`company-mode' front-end similar to a tooltip but based on overlays."
2558 (cl-case command
2559 (pre-command (company-pseudo-tooltip-hide-temporarily))
2560 (post-command
2561 (unless (when (overlayp company-pseudo-tooltip-overlay)
2562 (let* ((ov company-pseudo-tooltip-overlay)
2563 (old-height (overlay-get ov 'company-height))
2564 (new-height (company--pseudo-tooltip-height)))
2565 (and
2566 (>= (* old-height new-height) 0)
2567 (>= (abs old-height) (abs new-height))
2568 (equal (company-pseudo-tooltip-guard)
2569 (overlay-get ov 'company-guard)))))
2570 ;; Redraw needed.
2571 (company-pseudo-tooltip-show-at-point (point) (length company-prefix))
2572 (overlay-put company-pseudo-tooltip-overlay
2573 'company-guard (company-pseudo-tooltip-guard)))
2574 (company-pseudo-tooltip-unhide))
2575 (hide (company-pseudo-tooltip-hide)
2576 (setq company-tooltip-offset 0))
2577 (update (when (overlayp company-pseudo-tooltip-overlay)
2578 (company-pseudo-tooltip-edit company-selection)))))
2579
2580 (defun company-pseudo-tooltip-unless-just-one-frontend (command)
2581 "`company-pseudo-tooltip-frontend', but not shown for single candidates."
2582 (unless (and (eq command 'post-command)
2583 (company--show-inline-p))
2584 (company-pseudo-tooltip-frontend command)))
2585
2586 ;;; overlay ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2587
2588 (defvar-local company-preview-overlay nil)
2589
2590 (defun company-preview-show-at-point (pos)
2591 (company-preview-hide)
2592
2593 (let ((completion (nth company-selection company-candidates)))
2594 (setq completion (propertize completion 'face 'company-preview))
2595 (add-text-properties 0 (length company-common)
2596 '(face company-preview-common) completion)
2597
2598 ;; Add search string
2599 (and company-search-string
2600 (string-match (regexp-quote company-search-string) completion)
2601 (add-text-properties (match-beginning 0)
2602 (match-end 0)
2603 '(face company-preview-search)
2604 completion))
2605
2606 (setq completion (company-strip-prefix completion))
2607
2608 (and (equal pos (point))
2609 (not (equal completion ""))
2610 (add-text-properties 0 1 '(cursor 1) completion))
2611
2612 (let* ((beg pos)
2613 (pto company-pseudo-tooltip-overlay)
2614 (ptf-workaround (and
2615 pto
2616 (char-before pos)
2617 (eq pos (overlay-start pto)))))
2618 ;; Try to accomodate for the pseudo-tooltip overlay,
2619 ;; which may start at the same position if it's at eol.
2620 (when ptf-workaround
2621 (cl-decf beg)
2622 (setq completion (concat (buffer-substring beg pos) completion)))
2623
2624 (setq company-preview-overlay (make-overlay beg pos))
2625
2626 (let ((ov company-preview-overlay))
2627 (overlay-put ov (if ptf-workaround 'display 'after-string)
2628 completion)
2629 (overlay-put ov 'window (selected-window))))))
2630
2631 (defun company-preview-hide ()
2632 (when company-preview-overlay
2633 (delete-overlay company-preview-overlay)
2634 (setq company-preview-overlay nil)))
2635
2636 (defun company-preview-frontend (command)
2637 "`company-mode' front-end showing the selection as if it had been inserted."
2638 (pcase command
2639 (`pre-command (company-preview-hide))
2640 (`post-command (company-preview-show-at-point (point)))
2641 (`hide (company-preview-hide))))
2642
2643 (defun company-preview-if-just-one-frontend (command)
2644 "`company-preview-frontend', but only shown for single candidates."
2645 (when (or (not (eq command 'post-command))
2646 (company--show-inline-p))
2647 (company-preview-frontend command)))
2648
2649 (defun company--show-inline-p ()
2650 (and (not (cdr company-candidates))
2651 company-common
2652 (or (eq (company-call-backend 'ignore-case) 'keep-prefix)
2653 (string-prefix-p company-prefix company-common))))
2654
2655 ;;; echo ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2656
2657 (defvar-local company-echo-last-msg nil)
2658
2659 (defvar company-echo-timer nil)
2660
2661 (defvar company-echo-delay .01)
2662
2663 (defun company-echo-show (&optional getter)
2664 (when getter
2665 (setq company-echo-last-msg (funcall getter)))
2666 (let ((message-log-max nil))
2667 (if company-echo-last-msg
2668 (message "%s" company-echo-last-msg)
2669 (message ""))))
2670
2671 (defun company-echo-show-soon (&optional getter)
2672 (when company-echo-timer
2673 (cancel-timer company-echo-timer))
2674 (setq company-echo-timer (run-with-timer 0 nil 'company-echo-show getter)))
2675
2676 (defsubst company-echo-show-when-idle (&optional getter)
2677 (when (sit-for company-echo-delay)
2678 (company-echo-show getter)))
2679
2680 (defun company-echo-format ()
2681
2682 (let ((limit (window-body-width (minibuffer-window)))
2683 (len -1)
2684 ;; Roll to selection.
2685 (candidates (nthcdr company-selection company-candidates))
2686 (i (if company-show-numbers company-selection 99999))
2687 comp msg)
2688
2689 (while candidates
2690 (setq comp (company-reformat (pop candidates))
2691 len (+ len 1 (length comp)))
2692 (if (< i 10)
2693 ;; Add number.
2694 (progn
2695 (setq comp (propertize (format "%d: %s" i comp)
2696 'face 'company-echo))
2697 (cl-incf len 3)
2698 (cl-incf i)
2699 (add-text-properties 3 (+ 3 (length company-common))
2700 '(face company-echo-common) comp))
2701 (setq comp (propertize comp 'face 'company-echo))
2702 (add-text-properties 0 (length company-common)
2703 '(face company-echo-common) comp))
2704 (if (>= len limit)
2705 (setq candidates nil)
2706 (push comp msg)))
2707
2708 (mapconcat 'identity (nreverse msg) " ")))
2709
2710 (defun company-echo-strip-common-format ()
2711
2712 (let ((limit (window-body-width (minibuffer-window)))
2713 (len (+ (length company-prefix) 2))
2714 ;; Roll to selection.
2715 (candidates (nthcdr company-selection company-candidates))
2716 (i (if company-show-numbers company-selection 99999))
2717 msg comp)
2718
2719 (while candidates
2720 (setq comp (company-strip-prefix (pop candidates))
2721 len (+ len 2 (length comp)))
2722 (when (< i 10)
2723 ;; Add number.
2724 (setq comp (format "%s (%d)" comp i))
2725 (cl-incf len 4)
2726 (cl-incf i))
2727 (if (>= len limit)
2728 (setq candidates nil)
2729 (push (propertize comp 'face 'company-echo) msg)))
2730
2731 (concat (propertize company-prefix 'face 'company-echo-common) "{"
2732 (mapconcat 'identity (nreverse msg) ", ")
2733 "}")))
2734
2735 (defun company-echo-hide ()
2736 (unless (equal company-echo-last-msg "")
2737 (setq company-echo-last-msg "")
2738 (company-echo-show)))
2739
2740 (defun company-echo-frontend (command)
2741 "`company-mode' front-end showing the candidates in the echo area."
2742 (pcase command
2743 (`post-command (company-echo-show-soon 'company-echo-format))
2744 (`hide (company-echo-hide))))
2745
2746 (defun company-echo-strip-common-frontend (command)
2747 "`company-mode' front-end showing the candidates in the echo area."
2748 (pcase command
2749 (`post-command (company-echo-show-soon 'company-echo-strip-common-format))
2750 (`hide (company-echo-hide))))
2751
2752 (defun company-echo-metadata-frontend (command)
2753 "`company-mode' front-end showing the documentation in the echo area."
2754 (pcase command
2755 (`post-command (company-echo-show-when-idle 'company-fetch-metadata))
2756 (`hide (company-echo-hide))))
2757
2758 (provide 'company)
2759 ;;; company.el ends here