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