]> code.delx.au - gnu-emacs-elpa/blob - company.el
Handle 'stop prefix directly
[gnu-emacs-elpa] / company.el
1 ;;; company.el --- Modular in-buffer completion framework
2
3 ;; Copyright (C) 2009-2013 Free Software Foundation, Inc.
4
5 ;; Author: Nikolaj Schumacher
6 ;; Maintainer: Dmitry Gutov <dgutov@yandex.ru>
7 ;; Version: 0.6
8 ;; Keywords: abbrev, convenience, matching
9 ;; URL: http://company-mode.github.com/
10 ;; Compatibility: GNU Emacs 22.x, 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
74 (add-to-list 'debug-ignored-errors "^.* frontend cannot be used twice$")
75 (add-to-list 'debug-ignored-errors "^Echo area cannot be used twice$")
76 (add-to-list 'debug-ignored-errors "^No \\(document\\|loc\\)ation available$")
77 (add-to-list 'debug-ignored-errors "^Company not ")
78 (add-to-list 'debug-ignored-errors "^No candidate number ")
79 (add-to-list 'debug-ignored-errors "^Cannot complete at point$")
80 (add-to-list 'debug-ignored-errors "^No other back-end$")
81
82 (defgroup company nil
83 "Extensible inline text completion mechanism"
84 :group 'abbrev
85 :group 'convenience
86 :group 'matching)
87
88 (defface company-tooltip
89 '((t :background "yellow"
90 :foreground "black"))
91 "Face used for the tool tip."
92 :group 'company)
93
94 (defface company-tooltip-selection
95 '((default :inherit company-tooltip)
96 (((class color) (min-colors 88)) (:background "orange1"))
97 (t (:background "green")))
98 "Face used for the selection in the tool tip."
99 :group 'company)
100
101 (defface company-tooltip-mouse
102 '((default :inherit highlight))
103 "Face used for the tool tip item under the mouse."
104 :group 'company)
105
106 (defface company-tooltip-common
107 '((t :inherit company-tooltip
108 :foreground "red"))
109 "Face used for the common completion in the tool tip."
110 :group 'company)
111
112 (defface company-tooltip-common-selection
113 '((t :inherit company-tooltip-selection
114 :foreground "red"))
115 "Face used for the selected common completion in the tool tip."
116 :group 'company)
117
118 (defface company-preview
119 '((t :background "blue4"
120 :foreground "wheat"))
121 "Face used for the completion preview."
122 :group 'company)
123
124 (defface company-preview-common
125 '((t :inherit company-preview
126 :foreground "red"))
127 "Face used for the common part of the completion preview."
128 :group 'company)
129
130 (defface company-preview-search
131 '((t :inherit company-preview
132 :background "blue1"))
133 "Face used for the search string in the completion preview."
134 :group 'company)
135
136 (defface company-echo nil
137 "Face used for completions in the echo area."
138 :group 'company)
139
140 (defface company-echo-common
141 '((((background dark)) (:foreground "firebrick1"))
142 (((background light)) (:background "firebrick4")))
143 "Face used for the common part of completions in the echo area."
144 :group 'company)
145
146 (defun company-frontends-set (variable value)
147 ;; uniquify
148 (let ((remainder value))
149 (setcdr remainder (delq (car remainder) (cdr remainder))))
150 (and (memq 'company-pseudo-tooltip-unless-just-one-frontend value)
151 (memq 'company-pseudo-tooltip-frontend value)
152 (error "Pseudo tooltip frontend cannot be used twice"))
153 (and (memq 'company-preview-if-just-one-frontend value)
154 (memq 'company-preview-frontend value)
155 (error "Preview frontend cannot be used twice"))
156 (and (memq 'company-echo value)
157 (memq 'company-echo-metadata-frontend value)
158 (error "Echo area cannot be used twice"))
159 ;; preview must come last
160 (dolist (f '(company-preview-if-just-one-frontend company-preview-frontend))
161 (when (memq f value)
162 (setq value (append (delq f value) (list f)))))
163 (set variable value))
164
165 (defcustom company-frontends '(company-pseudo-tooltip-unless-just-one-frontend
166 company-preview-if-just-one-frontend
167 company-echo-metadata-frontend)
168 "The list of active front-ends (visualizations).
169 Each front-end is a function that takes one argument. It is called with
170 one of the following arguments:
171
172 'show: When the visualization should start.
173
174 'hide: When the visualization should end.
175
176 'update: When the data has been updated.
177
178 'pre-command: Before every command that is executed while the
179 visualization is active.
180
181 'post-command: After every command that is executed while the
182 visualization is active.
183
184 The visualized data is stored in `company-prefix', `company-candidates',
185 `company-common', `company-selection', `company-point' and
186 `company-search-string'."
187 :set 'company-frontends-set
188 :group 'company
189 :type '(repeat (choice (const :tag "echo" company-echo-frontend)
190 (const :tag "echo, strip common"
191 company-echo-strip-common-frontend)
192 (const :tag "show echo meta-data in echo"
193 company-echo-metadata-frontend)
194 (const :tag "pseudo tooltip"
195 company-pseudo-tooltip-frontend)
196 (const :tag "pseudo tooltip, multiple only"
197 company-pseudo-tooltip-unless-just-one-frontend)
198 (const :tag "preview" company-preview-frontend)
199 (const :tag "preview, unique only"
200 company-preview-if-just-one-frontend)
201 (function :tag "custom function" nil))))
202
203 (defcustom company-tooltip-limit 10
204 "The maximum number of candidates in the tool tip"
205 :group 'company
206 :type 'integer)
207
208 (defcustom company-tooltip-minimum 6
209 "The minimum height of the tool tip.
210 If this many lines are not available, prefer to display the tooltip above."
211 :group 'company
212 :type 'integer)
213
214 (defvar company-safe-backends
215 '((company-abbrev . "Abbrev")
216 (company-clang . "clang")
217 (company-css . "CSS")
218 (company-dabbrev . "dabbrev for plain text")
219 (company-dabbrev-code . "dabbrev for code")
220 (company-eclim . "eclim (an Eclipse interace)")
221 (company-elisp . "Emacs Lisp")
222 (company-etags . "etags")
223 (company-files . "Files")
224 (company-gtags . "GNU Global")
225 (company-ispell . "ispell")
226 (company-keywords . "Programming language keywords")
227 (company-nxml . "nxml")
228 (company-oddmuse . "Oddmuse")
229 (company-pysmell . "PySmell")
230 (company-ropemacs . "ropemacs")
231 (company-semantic . "CEDET Semantic")
232 (company-tempo . "Tempo templates")
233 (company-xcode . "Xcode")))
234 (put 'company-safe-backends 'risky-local-variable t)
235
236 (defun company-safe-backends-p (backends)
237 (and (consp backends)
238 (not (dolist (backend backends)
239 (unless (if (consp backend)
240 (company-safe-backends-p backend)
241 (assq backend company-safe-backends))
242 (return t))))))
243
244 (defun company-capf (command &optional arg &rest args)
245 "`company-mode' back-end using `completion-at-point-functions'.
246 Requires Emacs 24.1 or newer."
247 (interactive (list 'interactive))
248 (case command
249 (interactive (company-begin-backend 'company-capf))
250 (prefix
251 (let ((res (run-hook-wrapped 'completion-at-point-functions
252 ;; Ignore misbehaving functions.
253 #'completion--capf-wrapper 'optimist)))
254 (when (consp res)
255 (if (> (nth 2 res) (point))
256 'stop
257 (buffer-substring-no-properties (nth 1 res) (point))))))
258 (candidates
259 (let ((res (run-hook-wrapped 'completion-at-point-functions
260 ;; Ignore misbehaving functions.
261 #'completion--capf-wrapper 'optimist)))
262 (when (consp res)
263 (all-completions arg (nth 3 res)
264 (plist-get (nthcdr 4 res) :predicate)))))))
265
266 (defcustom company-backends '(company-elisp company-nxml company-css
267 company-clang company-semantic company-eclim
268 company-xcode company-ropemacs
269 (company-gtags company-etags company-dabbrev-code
270 company-keywords)
271 company-oddmuse company-files company-dabbrev)
272 "The list of active back-ends (completion engines).
273 Each list elements can itself be a list of back-ends. In that case their
274 completions are merged. Otherwise only the first matching back-end returns
275 results.
276
277 `company-begin-backend' can be used to start a specific back-end,
278 `company-other-backend' will skip to the next matching back-end in the list.
279
280 Each back-end is a function that takes a variable number of arguments.
281 The first argument is the command requested from the back-end. It is one
282 of the following:
283
284 `prefix': The back-end should return the text to be completed. It must be
285 text immediately before `point'. Returning nil passes control to the next
286 back-end. The function should return 'stop if it should complete but cannot
287 \(e.g. if it is in the middle of a string\). If the returned value is only
288 part of the prefix (e.g. the part after \"->\" in C), the back-end may return a
289 cons of prefix and prefix length, which is then used in the
290 `company-minimum-prefix-length' test.
291
292 `candidates': The second argument is the prefix to be completed. The
293 return value should be a list of candidates that start with the prefix.
294
295 Optional commands:
296
297 `sorted': The back-end may return t here to indicate that the candidates
298 are sorted and will not need to be sorted again.
299
300 `duplicates': If non-nil, company will take care of removing duplicates
301 from the list.
302
303 `no-cache': Usually company doesn't ask for candidates again as completion
304 progresses, unless the back-end returns t for this command. The second
305 argument is the latest prefix.
306
307 `meta': The second argument is a completion candidate. The back-end should
308 return a (short) documentation string for it.
309
310 `doc-buffer': The second argument is a completion candidate.
311 The back-end should create a buffer (preferably with `company-doc-buffer'),
312 fill it with documentation and return it.
313
314 `location': The second argument is a completion candidate. The back-end can
315 return the cons of buffer and buffer location, or of file and line
316 number where the completion candidate was defined.
317
318 `require-match': If this value is t, the user is not allowed to enter anything
319 not offering as a candidate. Use with care! The default value nil gives the
320 user that choice with `company-require-match'. Return value 'never overrides
321 that option the other way around.
322
323 `init': Called once for each buffer, the back-end can check for external
324 programs and files and load any required libraries. Raising an error here will
325 show up in message log once, and the backend will not be used for completion.
326
327 `post-completion': Called after a completion candidate has been inserted into
328 the buffer. The second argument is the candidate. Can be used to modify it,
329 e.g. to expand a snippet.
330
331 The back-end should return nil for all commands it does not support or
332 does not know about. It should also be callable interactively and use
333 `company-begin-backend' to start itself in that case."
334 :group 'company
335 :type `(repeat
336 (choice
337 :tag "Back-end"
338 ,@(mapcar (lambda (b) `(const :tag ,(cdr b) ,(car b)))
339 company-safe-backends)
340 (symbol :tag "User defined")
341 (repeat :tag "Merged Back-ends"
342 (choice :tag "Back-end"
343 ,@(mapcar (lambda (b)
344 `(const :tag ,(cdr b) ,(car b)))
345 company-safe-backends)
346 (symbol :tag "User defined"))))))
347
348 (put 'company-backends 'safe-local-variable 'company-safe-backends-p)
349
350 (defcustom company-completion-started-hook nil
351 "Hook run when company starts completing.
352 The hook is called with one argument that is non-nil if the completion was
353 started manually."
354 :group 'company
355 :type 'hook)
356
357 (defcustom company-completion-cancelled-hook nil
358 "Hook run when company cancels completing.
359 The hook is called with one argument that is non-nil if the completion was
360 aborted manually."
361 :group 'company
362 :type 'hook)
363
364 (defcustom company-completion-finished-hook nil
365 "Hook run when company successfully completes.
366 The hook is called with the selected candidate as an argument."
367 :group 'company
368 :type 'hook)
369
370 (defcustom company-minimum-prefix-length 3
371 "The minimum prefix length for automatic completion."
372 :group 'company
373 :type '(integer :tag "prefix length"))
374
375 (defcustom company-require-match 'company-explicit-action-p
376 "If enabled, disallow non-matching input.
377 This can be a function do determine if a match is required.
378
379 This can be overridden by the back-end, if it returns t or 'never to
380 'require-match. `company-auto-complete' also takes precedence over this."
381 :group 'company
382 :type '(choice (const :tag "Off" nil)
383 (function :tag "Predicate function")
384 (const :tag "On, if user interaction took place"
385 'company-explicit-action-p)
386 (const :tag "On" t)))
387
388 (defcustom company-auto-complete 'company-explicit-action-p
389 "Determines when to auto-complete.
390 If this is enabled, all characters from `company-auto-complete-chars' complete
391 the selected completion. This can also be a function."
392 :group 'company
393 :type '(choice (const :tag "Off" nil)
394 (function :tag "Predicate function")
395 (const :tag "On, if user interaction took place"
396 'company-explicit-action-p)
397 (const :tag "On" t)))
398
399 (defcustom company-auto-complete-chars '(?\ ?\( ?\) ?. ?\" ?$ ?\' ?< ?| ?!)
400 "Determines which characters trigger an automatic completion.
401 See `company-auto-complete'. If this is a string, each string character causes
402 completion. If it is a list of syntax description characters (see
403 `modify-syntax-entry'), all characters with that syntax auto-complete.
404
405 This can also be a function, which is called with the new input and should
406 return non-nil if company should auto-complete.
407
408 A character that is part of a valid candidate never starts auto-completion."
409 :group 'company
410 :type '(choice (string :tag "Characters")
411 (set :tag "Syntax"
412 (const :tag "Whitespace" ?\ )
413 (const :tag "Symbol" ?_)
414 (const :tag "Opening parentheses" ?\()
415 (const :tag "Closing parentheses" ?\))
416 (const :tag "Word constituent" ?w)
417 (const :tag "Punctuation." ?.)
418 (const :tag "String quote." ?\")
419 (const :tag "Paired delimiter." ?$)
420 (const :tag "Expression quote or prefix operator." ?\')
421 (const :tag "Comment starter." ?<)
422 (const :tag "Comment ender." ?>)
423 (const :tag "Character-quote." ?/)
424 (const :tag "Generic string fence." ?|)
425 (const :tag "Generic comment fence." ?!))
426 (function :tag "Predicate function")))
427
428 (defcustom company-idle-delay .7
429 "The idle delay in seconds until automatic completions starts.
430 A value of nil means never complete automatically, t means complete
431 immediately when a prefix of `company-minimum-prefix-length' is reached."
432 :group 'company
433 :type '(choice (const :tag "never (nil)" nil)
434 (const :tag "immediate (t)" t)
435 (number :tag "seconds")))
436
437 (defcustom company-begin-commands t
438 "A list of commands following which company will start completing.
439 If this is t, it will complete after any command. See `company-idle-delay'.
440
441 Alternatively any command with a non-nil 'company-begin property is treated as
442 if it was on this list."
443 :group 'company
444 :type '(choice (const :tag "Any command" t)
445 (const :tag "Self insert command" '(self-insert-command))
446 (repeat :tag "Commands" function)))
447
448 (defcustom company-show-numbers nil
449 "If enabled, show quick-access numbers for the first ten candidates."
450 :group 'company
451 :type '(choice (const :tag "off" nil)
452 (const :tag "on" t)))
453
454 (defvar company-end-of-buffer-workaround t
455 "Work around a visualization bug when completing at the end of the buffer.
456 The work-around consists of adding a newline.")
457
458 ;;; mode ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
459
460 (defvar company-mode-map (make-sparse-keymap)
461 "Keymap used by `company-mode'.")
462
463 (defvar company-active-map
464 (let ((keymap (make-sparse-keymap)))
465 (define-key keymap "\e\e\e" 'company-abort)
466 (define-key keymap "\C-g" 'company-abort)
467 (define-key keymap (kbd "M-n") 'company-select-next)
468 (define-key keymap (kbd "M-p") 'company-select-previous)
469 (define-key keymap (kbd "<down>") 'company-select-next-or-abort)
470 (define-key keymap (kbd "<up>") 'company-select-previous-or-abort)
471 (define-key keymap [down-mouse-1] 'ignore)
472 (define-key keymap [down-mouse-3] 'ignore)
473 (define-key keymap [mouse-1] 'company-complete-mouse)
474 (define-key keymap [mouse-3] 'company-select-mouse)
475 (define-key keymap [up-mouse-1] 'ignore)
476 (define-key keymap [up-mouse-3] 'ignore)
477 (define-key keymap [return] 'company-complete-selection)
478 (define-key keymap [tab] 'company-complete-common)
479 (define-key keymap (kbd "<f1>") 'company-show-doc-buffer)
480 (define-key keymap "\C-w" 'company-show-location)
481 (define-key keymap "\C-s" 'company-search-candidates)
482 (define-key keymap "\C-\M-s" 'company-filter-candidates)
483 (dotimes (i 10)
484 (define-key keymap (vector (+ (aref (kbd "M-0") 0) i))
485 `(lambda () (interactive) (company-complete-number ,i))))
486
487 keymap)
488 "Keymap that is enabled during an active completion.")
489
490 (defvar company--disabled-backends nil)
491
492 (defun company-init-backend (backend)
493 (and (symbolp backend)
494 (not (fboundp backend))
495 (ignore-errors (require backend nil t)))
496
497 (if (or (symbolp backend)
498 (functionp backend))
499 (condition-case err
500 (progn
501 (funcall backend 'init)
502 (put backend 'company-init t))
503 (error
504 (put backend 'company-init 'failed)
505 (unless (memq backend company--disabled-backends)
506 (message "Company back-end '%s' could not be initialized:\n%s"
507 backend (error-message-string err)))
508 (pushnew backend company--disabled-backends)
509 nil))
510 (mapc 'company-init-backend backend)))
511
512 (defvar company-default-lighter " company")
513
514 (defvar company-lighter company-default-lighter)
515 (make-variable-buffer-local 'company-lighter)
516
517 ;;;###autoload
518 (define-minor-mode company-mode
519 "\"complete anything\"; is an in-buffer completion framework.
520 Completion starts automatically, depending on the values
521 `company-idle-delay' and `company-minimum-prefix-length'.
522
523 Completion can be controlled with the commands:
524 `company-complete-common', `company-complete-selection', `company-complete',
525 `company-select-next', `company-select-previous'. If these commands are
526 called before `company-idle-delay', completion will also start.
527
528 Completions can be searched with `company-search-candidates' or
529 `company-filter-candidates'. These can be used while completion is
530 inactive, as well.
531
532 The completion data is retrieved using `company-backends' and displayed using
533 `company-frontends'. If you want to start a specific back-end, call it
534 interactively or use `company-begin-backend'.
535
536 regular keymap (`company-mode-map'):
537
538 \\{company-mode-map}
539 keymap during active completions (`company-active-map'):
540
541 \\{company-active-map}"
542 nil company-lighter company-mode-map
543 (if company-mode
544 (progn
545 (add-hook 'pre-command-hook 'company-pre-command nil t)
546 (add-hook 'post-command-hook 'company-post-command nil t)
547 (mapc 'company-init-backend company-backends))
548 (remove-hook 'pre-command-hook 'company-pre-command t)
549 (remove-hook 'post-command-hook 'company-post-command t)
550 (company-cancel)
551 (kill-local-variable 'company-point)))
552
553 (define-globalized-minor-mode global-company-mode company-mode
554 (lambda () (unless (or noninteractive (eq (aref (buffer-name) 0) ?\s))
555 (company-mode 1))))
556
557 (defsubst company-assert-enabled ()
558 (unless company-mode
559 (company-uninstall-map)
560 (error "Company not enabled")))
561
562 ;;; keymaps ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
563
564 (defvar company-my-keymap nil)
565 (make-variable-buffer-local 'company-my-keymap)
566
567 (defvar company-emulation-alist '((t . nil)))
568
569 (defsubst company-enable-overriding-keymap (keymap)
570 (company-uninstall-map)
571 (setq company-my-keymap keymap))
572
573 (defun company-ensure-emulation-alist ()
574 (unless (eq 'company-emulation-alist (car emulation-mode-map-alists))
575 (setq emulation-mode-map-alists
576 (cons 'company-emulation-alist
577 (delq 'company-emulation-alist emulation-mode-map-alists)))))
578
579 (defun company-install-map ()
580 (unless (or (cdar company-emulation-alist)
581 (null company-my-keymap))
582 (setf (cdar company-emulation-alist) company-my-keymap)))
583
584 (defun company-uninstall-map ()
585 (setf (cdar company-emulation-alist) nil))
586
587 ;; Hack:
588 ;; Emacs calculates the active keymaps before reading the event. That means we
589 ;; cannot change the keymap from a timer. So we send a bogus command.
590 (defun company-ignore ()
591 (interactive)
592 (setq this-command last-command))
593
594 (global-set-key '[31415926] 'company-ignore)
595
596 (defun company-input-noop ()
597 (push 31415926 unread-command-events))
598
599 ;; Hack:
600 ;; posn-col-row is incorrect in older Emacsen when line-spacing is set
601 (defun company--col-row (&optional pos)
602 (let ((posn (posn-at-point pos)))
603 (cons (car (posn-col-row posn)) (cdr (posn-actual-col-row posn)))))
604
605 (defsubst company--column (&optional pos)
606 (car (posn-col-row (posn-at-point pos))))
607
608 (defsubst company--row (&optional pos)
609 (cdr (posn-actual-col-row (posn-at-point pos))))
610
611 ;;; backends ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
612
613 (defun company-grab (regexp &optional expression limit)
614 (when (looking-back regexp limit)
615 (or (match-string-no-properties (or expression 0)) "")))
616
617 (defun company-grab-line (regexp &optional expression)
618 (company-grab regexp expression (point-at-bol)))
619
620 (defun company-grab-symbol ()
621 (if (looking-at "\\_>")
622 (buffer-substring (point) (save-excursion (skip-syntax-backward "w_")
623 (point)))
624 (unless (and (char-after) (memq (char-syntax (char-after)) '(?w ?_)))
625 "")))
626
627 (defun company-grab-word ()
628 (if (looking-at "\\>")
629 (buffer-substring (point) (save-excursion (skip-syntax-backward "w")
630 (point)))
631 (unless (and (char-after) (eq (char-syntax (char-after)) ?w))
632 "")))
633
634 (defun company-in-string-or-comment ()
635 (let ((ppss (syntax-ppss)))
636 (or (car (setq ppss (nthcdr 3 ppss)))
637 (car (setq ppss (cdr ppss)))
638 (nth 3 ppss))))
639
640 (if (fboundp 'locate-dominating-file)
641 (defalias 'company-locate-dominating-file 'locate-dominating-file)
642 (defun company-locate-dominating-file (file name)
643 (catch 'root
644 (let ((dir (file-name-directory file))
645 (prev-dir nil))
646 (while (not (equal dir prev-dir))
647 (when (file-exists-p (expand-file-name name dir))
648 (throw 'root dir))
649 (setq prev-dir dir
650 dir (file-name-directory (directory-file-name dir))))))))
651
652 (defun company-call-backend (&rest args)
653 (if (functionp company-backend)
654 (apply company-backend args)
655 (apply 'company--multi-backend-adapter company-backend args)))
656
657 (defun company--multi-backend-adapter (backends command &rest args)
658 (let ((backends (remove-if (lambda (b) (eq 'failed (get b 'company-init)))
659 backends)))
660 (case command
661 (candidates
662 (loop for backend in backends
663 when (equal (funcall backend 'prefix)
664 (car args))
665 nconc (apply backend 'candidates args)))
666 (sorted nil)
667 (duplicates t)
668 (otherwise
669 (let (value)
670 (dolist (backend backends)
671 (when (setq value (apply backend command args))
672 (return value))))))))
673
674 ;;; completion mechanism ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
675
676 (defvar company-backend nil)
677 (make-variable-buffer-local 'company-backend)
678
679 (defvar company-prefix nil)
680 (make-variable-buffer-local 'company-prefix)
681
682 (defvar company-candidates nil)
683 (make-variable-buffer-local 'company-candidates)
684
685 (defvar company-candidates-length nil)
686 (make-variable-buffer-local 'company-candidates-length)
687
688 (defvar company-candidates-cache nil)
689 (make-variable-buffer-local 'company-candidates-cache)
690
691 (defvar company-candidates-predicate nil)
692 (make-variable-buffer-local 'company-candidates-predicate)
693
694 (defvar company-common nil)
695 (make-variable-buffer-local 'company-common)
696
697 (defvar company-selection 0)
698 (make-variable-buffer-local 'company-selection)
699
700 (defvar company-selection-changed nil)
701 (make-variable-buffer-local 'company-selection-changed)
702
703 (defvar company--explicit-action nil
704 "Non-nil, if explicit completion took place.")
705 (make-variable-buffer-local 'company--explicit-action)
706
707 (defvar company--auto-completion nil
708 "Non-nil when current candidate is being completed automatically.
709 Controlled by `company-auto-complete'.")
710
711 (defvar company--point-max nil)
712 (make-variable-buffer-local 'company--point-max)
713
714 (defvar company-point nil)
715 (make-variable-buffer-local 'company-point)
716
717 (defvar company-timer nil)
718
719 (defvar company-added-newline nil)
720 (make-variable-buffer-local 'company-added-newline)
721
722 (defsubst company-strip-prefix (str)
723 (substring str (length company-prefix)))
724
725 (defmacro company-with-candidate-inserted (candidate &rest body)
726 "Evaluate BODY with CANDIDATE temporarily inserted.
727 This is a tool for back-ends that need candidates inserted before they
728 can retrieve meta-data for them."
729 (declare (indent 1))
730 `(let ((inhibit-modification-hooks t)
731 (inhibit-point-motion-hooks t)
732 (modified-p (buffer-modified-p)))
733 (insert (company-strip-prefix ,candidate))
734 (unwind-protect
735 (progn ,@body)
736 (delete-region company-point (point)))))
737
738 (defun company-explicit-action-p ()
739 "Return whether explicit completion action was taken by the user."
740 (or company--explicit-action
741 company-selection-changed))
742
743 (defsubst company-reformat (candidate)
744 ;; company-ispell needs this, because the results are always lower-case
745 ;; It's mory efficient to fix it only when they are displayed.
746 (concat company-prefix (substring candidate (length company-prefix))))
747
748 (defun company--should-complete ()
749 (and (not (or buffer-read-only overriding-terminal-local-map
750 overriding-local-map
751 (minibufferp)))
752 ;; Check if in the middle of entering a key combination.
753 (or (equal (this-command-keys-vector) [])
754 (not (keymapp (key-binding (this-command-keys-vector)))))
755 (eq company-idle-delay t)
756 (or (eq t company-begin-commands)
757 (memq this-command company-begin-commands)
758 (and (symbolp this-command) (get this-command 'company-begin)))
759 (not (and transient-mark-mode mark-active))))
760
761 (defsubst company-call-frontends (command)
762 (dolist (frontend company-frontends)
763 (condition-case err
764 (funcall frontend command)
765 (error (error "Company: Front-end %s error \"%s\" on command %s"
766 frontend (error-message-string err) command)))))
767
768 (defsubst company-set-selection (selection &optional force-update)
769 (setq selection (max 0 (min (1- company-candidates-length) selection)))
770 (when (or force-update (not (equal selection company-selection)))
771 (setq company-selection selection
772 company-selection-changed t)
773 (company-call-frontends 'update)))
774
775 (defun company-apply-predicate (candidates predicate)
776 (let (new)
777 (dolist (c candidates)
778 (when (funcall predicate c)
779 (push c new)))
780 (nreverse new)))
781
782 (defun company-update-candidates (candidates)
783 (setq company-candidates-length (length candidates))
784 (if (> company-selection 0)
785 ;; Try to restore the selection
786 (let ((selected (nth company-selection company-candidates)))
787 (setq company-selection 0
788 company-candidates candidates)
789 (when selected
790 (while (and candidates (string< (pop candidates) selected))
791 (incf company-selection))
792 (unless candidates
793 ;; Make sure selection isn't out of bounds.
794 (setq company-selection (min (1- company-candidates-length)
795 company-selection)))))
796 (setq company-selection 0
797 company-candidates candidates))
798 ;; Save in cache:
799 (push (cons company-prefix company-candidates) company-candidates-cache)
800 ;; Calculate common.
801 (let ((completion-ignore-case (company-call-backend 'ignore-case)))
802 (setq company-common (company--safe-candidate
803 (try-completion company-prefix company-candidates))))
804 (when (eq company-common t)
805 (setq company-candidates nil)))
806
807 (defun company--safe-candidate (str)
808 (or (company-call-backend 'crop str)
809 str))
810
811 (defun company-calculate-candidates (prefix)
812 (let ((candidates (cdr (assoc prefix company-candidates-cache)))
813 (ignore-case (company-call-backend 'ignore-case)))
814 (or candidates
815 (when company-candidates-cache
816 (let ((len (length prefix))
817 (completion-ignore-case ignore-case)
818 prev)
819 (dotimes (i (1+ len))
820 (when (setq prev (cdr (assoc (substring prefix 0 (- len i))
821 company-candidates-cache)))
822 (setq candidates (all-completions prefix prev))
823 (return t)))))
824 ;; no cache match, call back-end
825 (progn
826 (setq candidates (company-call-backend 'candidates prefix))
827 (when company-candidates-predicate
828 (setq candidates
829 (company-apply-predicate candidates
830 company-candidates-predicate)))
831 (unless (company-call-backend 'sorted)
832 (setq candidates (sort candidates 'string<)))
833 (when (company-call-backend 'duplicates)
834 ;; strip duplicates
835 (let ((c2 candidates))
836 (while c2
837 (setcdr c2 (progn (while (equal (pop c2) (car c2)))
838 c2)))))))
839 (if (and candidates
840 (or (cdr candidates)
841 (not (eq t (compare-strings (car candidates) nil nil
842 prefix nil nil ignore-case)))))
843 candidates
844 ;; Already completed and unique; don't start.
845 ;; FIXME: Not the right place? maybe when setting?
846 (and company-candidates t))))
847
848 (defun company-idle-begin (buf win tick pos)
849 (and company-mode
850 (eq buf (current-buffer))
851 (eq win (selected-window))
852 (eq tick (buffer-chars-modified-tick))
853 (eq pos (point))
854 (not company-candidates)
855 (not (equal (point) company-point))
856 (let ((company-idle-delay t)
857 (company-begin-commands t))
858 (company-begin)
859 (when company-candidates
860 (company-input-noop)
861 (company-post-command)))))
862
863 (defun company-auto-begin ()
864 (company-assert-enabled)
865 (and company-mode
866 (not company-candidates)
867 (let ((company-idle-delay t)
868 (company-minimum-prefix-length 0)
869 (company-begin-commands t))
870 (company-begin)))
871 ;; Return non-nil if active.
872 company-candidates)
873
874 (defun company-manual-begin ()
875 (interactive)
876 (setq company--explicit-action t)
877 (company-auto-begin))
878
879 (defun company-other-backend (&optional backward)
880 (interactive (list current-prefix-arg))
881 (company-assert-enabled)
882 (if company-backend
883 (let* ((after (cdr (member company-backend company-backends)))
884 (before (cdr (member company-backend (reverse company-backends))))
885 (next (if backward
886 (append before (reverse after))
887 (append after (reverse before)))))
888 (company-cancel)
889 (dolist (backend next)
890 (when (ignore-errors (company-begin-backend backend))
891 (return t))))
892 (company-manual-begin))
893 (unless company-candidates
894 (error "No other back-end")))
895
896 (defun company-require-match-p ()
897 (let ((backend-value (company-call-backend 'require-match)))
898 (or (eq backend-value t)
899 (and (if (functionp company-require-match)
900 (funcall company-require-match)
901 (eq company-require-match t))
902 (not (eq backend-value 'never))))))
903
904 (defun company-punctuation-p (input)
905 "Return non-nil, if input starts with punctuation or parentheses."
906 (memq (char-syntax (string-to-char input)) '(?. ?\( ?\))))
907
908 (defun company-auto-complete-p (input)
909 "Return non-nil, if input starts with punctuation or parentheses."
910 (and (if (functionp company-auto-complete)
911 (funcall company-auto-complete)
912 company-auto-complete)
913 (if (functionp company-auto-complete-chars)
914 (funcall company-auto-complete-chars input)
915 (if (consp company-auto-complete-chars)
916 (memq (char-syntax (string-to-char input))
917 company-auto-complete-chars)
918 (string-match (substring input 0 1) company-auto-complete-chars)))))
919
920 (defun company--incremental-p ()
921 (and (> (point) company-point)
922 (> (point-max) company--point-max)
923 (not (eq this-command 'backward-delete-char-untabify))
924 (equal (buffer-substring (- company-point (length company-prefix))
925 company-point)
926 company-prefix)))
927
928 (defsubst company--string-incremental-p (old-prefix new-prefix)
929 (and (> (length new-prefix) (length old-prefix))
930 (equal old-prefix (substring new-prefix 0 (length old-prefix)))))
931
932 (defun company--continue-failed (new-prefix)
933 (when (company--incremental-p)
934 (let ((input (buffer-substring-no-properties (point) company-point)))
935 (cond
936 ((company-auto-complete-p input)
937 ;; auto-complete
938 (save-excursion
939 (goto-char company-point)
940 (let ((company--auto-completion t))
941 (company-complete-selection))
942 nil))
943 ((and (company--string-incremental-p company-prefix new-prefix)
944 (company-require-match-p))
945 ;; wrong incremental input, but required match
946 (backward-delete-char (length input))
947 (ding)
948 (message "Matching input is required")
949 company-candidates)
950 ((equal company-prefix (car company-candidates))
951 ;; last input was actually success
952 (company-cancel company-prefix)
953 nil)))))
954
955 (defun company--good-prefix-p (prefix)
956 (and (or (company-explicit-action-p)
957 (unless (eq prefix 'stop)
958 (>= (or (cdr-safe prefix) (length prefix))
959 company-minimum-prefix-length)))
960 (stringp (or (car-safe prefix) prefix))))
961
962 (defun company--continue ()
963 (when (company-call-backend 'no-cache company-prefix)
964 ;; Don't complete existing candidates, fetch new ones.
965 (setq company-candidates-cache nil))
966 (let* ((new-prefix (company-call-backend 'prefix))
967 (c (when (and (company--good-prefix-p new-prefix)
968 (setq new-prefix (or (car-safe new-prefix) new-prefix))
969 (= (- (point) (length new-prefix))
970 (- company-point (length company-prefix))))
971 (setq new-prefix (or (car-safe new-prefix) new-prefix))
972 (company-calculate-candidates new-prefix))))
973 (or (cond
974 ((eq c t)
975 ;; t means complete/unique.
976 (company-cancel new-prefix)
977 nil)
978 ((consp c)
979 ;; incremental match
980 (setq company-prefix new-prefix)
981 (company-update-candidates c)
982 c)
983 (t (company--continue-failed new-prefix)))
984 (company-cancel))))
985
986 (defun company--begin-new ()
987 (let (prefix c)
988 (dolist (backend (if company-backend
989 ;; prefer manual override
990 (list company-backend)
991 company-backends))
992 (setq prefix
993 (if (or (symbolp backend)
994 (functionp backend))
995 (when (or (not (symbolp backend))
996 (eq t (get backend 'company-init))
997 (unless (get backend 'company-init)
998 (company-init-backend backend)))
999 (funcall backend 'prefix))
1000 (company--multi-backend-adapter backend 'prefix)))
1001 (when prefix
1002 (when (company--good-prefix-p prefix)
1003 (setq prefix (or (car-safe prefix) prefix)
1004 company-backend backend
1005 c (company-calculate-candidates prefix))
1006 ;; t means complete/unique. We don't start, so no hooks.
1007 (if (not (consp c))
1008 (when company--explicit-action
1009 (message "No completion found"))
1010 (setq company-prefix prefix)
1011 (when (symbolp backend)
1012 (setq company-lighter (concat " " (symbol-name backend))))
1013 (company-update-candidates c)
1014 (run-hook-with-args 'company-completion-started-hook
1015 (company-explicit-action-p))
1016 (company-call-frontends 'show)))
1017 (return c)))))
1018
1019 (defun company-begin ()
1020 (or (and company-candidates (company--continue))
1021 (and (company--should-complete) (company--begin-new)))
1022 (when company-candidates
1023 (when (and company-end-of-buffer-workaround (eobp))
1024 (save-excursion (insert "\n"))
1025 (setq company-added-newline (buffer-chars-modified-tick)))
1026 (setq company-point (point)
1027 company--point-max (point-max))
1028 (company-ensure-emulation-alist)
1029 (company-enable-overriding-keymap company-active-map)
1030 (company-call-frontends 'update)))
1031
1032 (defun company-cancel (&optional result)
1033 (and company-added-newline
1034 (> (point-max) (point-min))
1035 (let ((tick (buffer-chars-modified-tick)))
1036 (delete-region (1- (point-max)) (point-max))
1037 (equal tick company-added-newline))
1038 ;; Only set unmodified when tick remained the same since insert.
1039 (set-buffer-modified-p nil))
1040 (when company-prefix
1041 (if (stringp result)
1042 (progn
1043 (company-call-backend 'pre-completion result)
1044 (run-hook-with-args 'company-completion-finished-hook result)
1045 (company-call-backend 'post-completion result))
1046 (run-hook-with-args 'company-completion-cancelled-hook result)))
1047 (setq company-added-newline nil
1048 company-backend nil
1049 company-prefix nil
1050 company-candidates nil
1051 company-candidates-length nil
1052 company-candidates-cache nil
1053 company-candidates-predicate nil
1054 company-common nil
1055 company-selection 0
1056 company-selection-changed nil
1057 company--explicit-action nil
1058 company-lighter company-default-lighter
1059 company--point-max nil
1060 company-point nil)
1061 (when company-timer
1062 (cancel-timer company-timer))
1063 (company-search-mode 0)
1064 (company-call-frontends 'hide)
1065 (company-enable-overriding-keymap nil))
1066
1067 (defun company-abort ()
1068 (interactive)
1069 (company-cancel t)
1070 ;; Don't start again, unless started manually.
1071 (setq company-point (point)))
1072
1073 (defun company-finish (result)
1074 (insert (company-strip-prefix result))
1075 (company-cancel result)
1076 ;; Don't start again, unless started manually.
1077 (setq company-point (point)))
1078
1079 (defsubst company-keep (command)
1080 (and (symbolp command) (get command 'company-keep)))
1081
1082 (defun company-pre-command ()
1083 (unless (company-keep this-command)
1084 (condition-case err
1085 (when company-candidates
1086 (company-call-frontends 'pre-command))
1087 (error (message "Company: An error occurred in pre-command")
1088 (message "%s" (error-message-string err))
1089 (company-cancel))))
1090 (when company-timer
1091 (cancel-timer company-timer)
1092 (setq company-timer nil))
1093 (company-uninstall-map))
1094
1095 (defun company-post-command ()
1096 (unless (company-keep this-command)
1097 (condition-case err
1098 (progn
1099 (unless (equal (point) company-point)
1100 (company-begin))
1101 (if company-candidates
1102 (company-call-frontends 'post-command)
1103 (and (numberp company-idle-delay)
1104 (or (eq t company-begin-commands)
1105 (memq this-command company-begin-commands))
1106 (setq company-timer
1107 (run-with-timer company-idle-delay nil
1108 'company-idle-begin
1109 (current-buffer) (selected-window)
1110 (buffer-chars-modified-tick) (point))))))
1111 (error (message "Company: An error occurred in post-command")
1112 (message "%s" (error-message-string err))
1113 (company-cancel))))
1114 (company-install-map))
1115
1116 ;;; search ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1117
1118 (defvar company-search-string nil)
1119 (make-variable-buffer-local 'company-search-string)
1120
1121 (defvar company-search-lighter " Search: \"\"")
1122 (make-variable-buffer-local 'company-search-lighter)
1123
1124 (defvar company-search-old-map nil)
1125 (make-variable-buffer-local 'company-search-old-map)
1126
1127 (defvar company-search-old-selection 0)
1128 (make-variable-buffer-local 'company-search-old-selection)
1129
1130 (defun company-search (text lines)
1131 (let ((quoted (regexp-quote text))
1132 (i 0))
1133 (dolist (line lines)
1134 (when (string-match quoted line (length company-prefix))
1135 (return i))
1136 (incf i))))
1137
1138 (defun company-search-printing-char ()
1139 (interactive)
1140 (company-search-assert-enabled)
1141 (setq company-search-string
1142 (concat (or company-search-string "") (string last-command-event))
1143 company-search-lighter (concat " Search: \"" company-search-string
1144 "\""))
1145 (let ((pos (company-search company-search-string
1146 (nthcdr company-selection company-candidates))))
1147 (if (null pos)
1148 (ding)
1149 (company-set-selection (+ company-selection pos) t))))
1150
1151 (defun company-search-repeat-forward ()
1152 "Repeat the incremental search in completion candidates forward."
1153 (interactive)
1154 (company-search-assert-enabled)
1155 (let ((pos (company-search company-search-string
1156 (cdr (nthcdr company-selection
1157 company-candidates)))))
1158 (if (null pos)
1159 (ding)
1160 (company-set-selection (+ company-selection pos 1) t))))
1161
1162 (defun company-search-repeat-backward ()
1163 "Repeat the incremental search in completion candidates backwards."
1164 (interactive)
1165 (company-search-assert-enabled)
1166 (let ((pos (company-search company-search-string
1167 (nthcdr (- company-candidates-length
1168 company-selection)
1169 (reverse company-candidates)))))
1170 (if (null pos)
1171 (ding)
1172 (company-set-selection (- company-selection pos 1) t))))
1173
1174 (defun company-create-match-predicate ()
1175 (setq company-candidates-predicate
1176 `(lambda (candidate)
1177 ,(if company-candidates-predicate
1178 `(and (string-match ,company-search-string candidate)
1179 (funcall ,company-candidates-predicate
1180 candidate))
1181 `(string-match ,company-search-string candidate))))
1182 (company-update-candidates
1183 (company-apply-predicate company-candidates company-candidates-predicate))
1184 ;; Invalidate cache.
1185 (setq company-candidates-cache (cons company-prefix company-candidates)))
1186
1187 (defun company-filter-printing-char ()
1188 (interactive)
1189 (company-search-assert-enabled)
1190 (company-search-printing-char)
1191 (company-create-match-predicate)
1192 (company-call-frontends 'update))
1193
1194 (defun company-search-kill-others ()
1195 "Limit the completion candidates to the ones matching the search string."
1196 (interactive)
1197 (company-search-assert-enabled)
1198 (company-create-match-predicate)
1199 (company-search-mode 0)
1200 (company-call-frontends 'update))
1201
1202 (defun company-search-abort ()
1203 "Abort searching the completion candidates."
1204 (interactive)
1205 (company-search-assert-enabled)
1206 (company-set-selection company-search-old-selection t)
1207 (company-search-mode 0))
1208
1209 (defun company-search-other-char ()
1210 (interactive)
1211 (company-search-assert-enabled)
1212 (company-search-mode 0)
1213 (company--unread-last-input))
1214
1215 (defvar company-search-map
1216 (let ((i 0)
1217 (keymap (make-keymap)))
1218 (if (fboundp 'max-char)
1219 (set-char-table-range (nth 1 keymap) (cons #x100 (max-char))
1220 'company-search-printing-char)
1221 (with-no-warnings
1222 ;; obsolete in Emacs 23
1223 (let ((l (generic-character-list))
1224 (table (nth 1 keymap)))
1225 (while l
1226 (set-char-table-default table (car l) 'company-search-printing-char)
1227 (setq l (cdr l))))))
1228 (define-key keymap [t] 'company-search-other-char)
1229 (while (< i ?\s)
1230 (define-key keymap (make-string 1 i) 'company-search-other-char)
1231 (incf i))
1232 (while (< i 256)
1233 (define-key keymap (vector i) 'company-search-printing-char)
1234 (incf i))
1235 (let ((meta-map (make-sparse-keymap)))
1236 (define-key keymap (char-to-string meta-prefix-char) meta-map)
1237 (define-key keymap [escape] meta-map))
1238 (define-key keymap (vector meta-prefix-char t) 'company-search-other-char)
1239 (define-key keymap "\e\e\e" 'company-search-other-char)
1240 (define-key keymap [escape escape escape] 'company-search-other-char)
1241
1242 (define-key keymap "\C-g" 'company-search-abort)
1243 (define-key keymap "\C-s" 'company-search-repeat-forward)
1244 (define-key keymap "\C-r" 'company-search-repeat-backward)
1245 (define-key keymap "\C-o" 'company-search-kill-others)
1246 keymap)
1247 "Keymap used for incrementally searching the completion candidates.")
1248
1249 (define-minor-mode company-search-mode
1250 "Search mode for completion candidates.
1251 Don't start this directly, use `company-search-candidates' or
1252 `company-filter-candidates'."
1253 nil company-search-lighter nil
1254 (if company-search-mode
1255 (if (company-manual-begin)
1256 (progn
1257 (setq company-search-old-selection company-selection)
1258 (company-call-frontends 'update))
1259 (setq company-search-mode nil))
1260 (kill-local-variable 'company-search-string)
1261 (kill-local-variable 'company-search-lighter)
1262 (kill-local-variable 'company-search-old-selection)
1263 (company-enable-overriding-keymap company-active-map)))
1264
1265 (defsubst company-search-assert-enabled ()
1266 (company-assert-enabled)
1267 (unless company-search-mode
1268 (company-uninstall-map)
1269 (error "Company not in search mode")))
1270
1271 (defun company-search-candidates ()
1272 "Start searching the completion candidates incrementally.
1273
1274 \\<company-search-map>Search can be controlled with the commands:
1275 - `company-search-repeat-forward' (\\[company-search-repeat-forward])
1276 - `company-search-repeat-backward' (\\[company-search-repeat-backward])
1277 - `company-search-abort' (\\[company-search-abort])
1278
1279 Regular characters are appended to the search string.
1280
1281 The command `company-search-kill-others' (\\[company-search-kill-others]) uses
1282 the search string to limit the completion candidates."
1283 (interactive)
1284 (company-search-mode 1)
1285 (company-enable-overriding-keymap company-search-map))
1286
1287 (defvar company-filter-map
1288 (let ((keymap (make-keymap)))
1289 (define-key keymap [remap company-search-printing-char]
1290 'company-filter-printing-char)
1291 (set-keymap-parent keymap company-search-map)
1292 keymap)
1293 "Keymap used for incrementally searching the completion candidates.")
1294
1295 (defun company-filter-candidates ()
1296 "Start filtering the completion candidates incrementally.
1297 This works the same way as `company-search-candidates' immediately
1298 followed by `company-search-kill-others' after each input."
1299 (interactive)
1300 (company-search-mode 1)
1301 (company-enable-overriding-keymap company-filter-map))
1302
1303 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1304
1305 (defun company-select-next ()
1306 "Select the next candidate in the list."
1307 (interactive)
1308 (when (company-manual-begin)
1309 (company-set-selection (1+ company-selection))))
1310
1311 (defun company-select-previous ()
1312 "Select the previous candidate in the list."
1313 (interactive)
1314 (when (company-manual-begin)
1315 (company-set-selection (1- company-selection))))
1316
1317 (defun company-select-next-or-abort ()
1318 "Select the next candidate if more than one, else abort
1319 and invoke the normal binding."
1320 (interactive)
1321 (if (> company-candidates-length 1)
1322 (company-select-next)
1323 (company-abort)
1324 (company--unread-last-input)))
1325
1326 (defun company-select-previous-or-abort ()
1327 "Select the previous candidate if more than one, else abort
1328 and invoke the normal binding."
1329 (interactive)
1330 (if (> company-candidates-length 1)
1331 (company-select-previous)
1332 (company-abort)
1333 (company--unread-last-input)))
1334
1335 (defun company-select-mouse (event)
1336 "Select the candidate picked by the mouse."
1337 (interactive "e")
1338 (when (nth 4 (event-start event))
1339 (company-set-selection (- (cdr (posn-actual-col-row (event-start event)))
1340 (company--row)
1341 1))
1342 t))
1343
1344 (defun company-complete-mouse (event)
1345 "Complete the candidate picked by the mouse."
1346 (interactive "e")
1347 (when (company-select-mouse event)
1348 (company-complete-selection)))
1349
1350 (defun company-complete-selection ()
1351 "Complete the selected candidate."
1352 (interactive)
1353 (when (company-manual-begin)
1354 (let ((result (nth company-selection company-candidates)))
1355 (when company--auto-completion
1356 (setq result (company--safe-candidate result)))
1357 (company-finish result))))
1358
1359 (defun company-complete-common ()
1360 "Complete the common part of all candidates."
1361 (interactive)
1362 (when (company-manual-begin)
1363 (if (and (not (cdr company-candidates))
1364 (equal company-common (car company-candidates)))
1365 (company-complete-selection)
1366 (insert (company-strip-prefix company-common)))))
1367
1368 (defun company-complete ()
1369 "Complete the common part of all candidates or the current selection.
1370 The first time this is called, the common part is completed, the second time, or
1371 when the selection has been changed, the selected candidate is completed."
1372 (interactive)
1373 (when (company-manual-begin)
1374 (if (or company-selection-changed
1375 (eq last-command 'company-complete-common))
1376 (call-interactively 'company-complete-selection)
1377 (call-interactively 'company-complete-common)
1378 (setq this-command 'company-complete-common))))
1379
1380 (defun company-complete-number (n)
1381 "Complete the Nth candidate.
1382 To show the number next to the candidates in some back-ends, enable
1383 `company-show-numbers'."
1384 (when (company-manual-begin)
1385 (and (< n 1) (> n company-candidates-length)
1386 (error "No candidate number %d" n))
1387 (decf n)
1388 (company-finish (nth n company-candidates))))
1389
1390 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1391
1392 (defconst company-space-strings-limit 100)
1393
1394 (defconst company-space-strings
1395 (let (lst)
1396 (dotimes (i company-space-strings-limit)
1397 (push (make-string (- company-space-strings-limit 1 i) ?\ ) lst))
1398 (apply 'vector lst)))
1399
1400 (defsubst company-space-string (len)
1401 (if (< len company-space-strings-limit)
1402 (aref company-space-strings len)
1403 (make-string len ?\ )))
1404
1405 (defsubst company-safe-substring (str from &optional to)
1406 (if (> from (string-width str))
1407 ""
1408 (with-temp-buffer
1409 (insert str)
1410 (move-to-column from)
1411 (let ((beg (point)))
1412 (if to
1413 (progn
1414 (move-to-column to)
1415 (concat (buffer-substring beg (point))
1416 (let ((padding (- to (current-column))))
1417 (when (> padding 0)
1418 (company-space-string padding)))))
1419 (buffer-substring beg (point-max)))))))
1420
1421 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1422
1423 (defvar company-last-metadata nil)
1424 (make-variable-buffer-local 'company-last-metadata)
1425
1426 (defun company-fetch-metadata ()
1427 (let ((selected (nth company-selection company-candidates)))
1428 (unless (equal selected (car company-last-metadata))
1429 (setq company-last-metadata
1430 (cons selected (company-call-backend 'meta selected))))
1431 (cdr company-last-metadata)))
1432
1433 (defun company-doc-buffer (&optional string)
1434 (with-current-buffer (get-buffer-create "*Company meta-data*")
1435 (erase-buffer)
1436 (current-buffer)))
1437
1438 (defvar company--electric-commands
1439 '(scroll-other-window scroll-other-window-down)
1440 "List of Commands that won't break out of electric commands.")
1441
1442 (defmacro company--electric-do (&rest body)
1443 (declare (indent 0) (debug t))
1444 `(when (company-manual-begin)
1445 (save-window-excursion
1446 (let ((height (window-height))
1447 (row (company--row))
1448 cmd)
1449 ,@body
1450 (and (< (window-height) height)
1451 (< (- (window-height) row 2) company-tooltip-limit)
1452 (recenter (- (window-height) row 2)))
1453 (while (memq (setq cmd (key-binding (vector (list (read-event)))))
1454 company--electric-commands)
1455 (call-interactively cmd))
1456 (company--unread-last-input)))))
1457
1458 (defun company--unread-last-input ()
1459 (when last-input-event
1460 (clear-this-command-keys t)
1461 (setq unread-command-events (list last-input-event))))
1462
1463 (defun company-show-doc-buffer ()
1464 "Temporarily show a buffer with the complete documentation for the selection."
1465 (interactive)
1466 (company--electric-do
1467 (let* ((selected (nth company-selection company-candidates))
1468 (doc-buffer (or (company-call-backend 'doc-buffer selected)
1469 (error "No documentation available"))))
1470 (with-current-buffer doc-buffer
1471 (goto-char (point-min)))
1472 (display-buffer doc-buffer t))))
1473 (put 'company-show-doc-buffer 'company-keep t)
1474
1475 (defun company-show-location ()
1476 "Temporarily display a buffer showing the selected candidate in context."
1477 (interactive)
1478 (company--electric-do
1479 (let* ((selected (nth company-selection company-candidates))
1480 (location (company-call-backend 'location selected))
1481 (pos (or (cdr location) (error "No location available")))
1482 (buffer (or (and (bufferp (car location)) (car location))
1483 (find-file-noselect (car location) t))))
1484 (with-selected-window (display-buffer buffer t)
1485 (save-restriction
1486 (widen)
1487 (if (bufferp (car location))
1488 (goto-char pos)
1489 (goto-char (point-min))
1490 (forward-line (1- pos))))
1491 (set-window-start nil (point))))))
1492 (put 'company-show-location 'company-keep t)
1493
1494 ;;; package functions ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1495
1496 (defvar company-callback nil)
1497 (make-variable-buffer-local 'company-callback)
1498
1499 (defvar company-begin-with-marker nil)
1500 (make-variable-buffer-local 'company-begin-with-marker)
1501
1502 (defun company-remove-callback (&optional ignored)
1503 (remove-hook 'company-completion-finished-hook company-callback t)
1504 (remove-hook 'company-completion-cancelled-hook 'company-remove-callback t)
1505 (remove-hook 'company-completion-finished-hook 'company-remove-callback t)
1506 (when company-begin-with-marker
1507 (set-marker company-begin-with-marker nil)))
1508
1509 (defun company-begin-backend (backend &optional callback)
1510 "Start a completion at point using BACKEND."
1511 (interactive (let ((val (completing-read "Company back-end: "
1512 obarray
1513 'functionp nil "company-")))
1514 (when val
1515 (list (intern val)))))
1516 (when (setq company-callback callback)
1517 (add-hook 'company-completion-finished-hook company-callback nil t))
1518 (add-hook 'company-completion-cancelled-hook 'company-remove-callback nil t)
1519 (add-hook 'company-completion-finished-hook 'company-remove-callback nil t)
1520 (setq company-backend backend)
1521 ;; Return non-nil if active.
1522 (or (company-manual-begin)
1523 (error "Cannot complete at point")))
1524
1525 (defun company-begin-with (candidates
1526 &optional prefix-length require-match callback)
1527 "Start a completion at point.
1528 CANDIDATES is the list of candidates to use and PREFIX-LENGTH is the length of
1529 the prefix that already is in the buffer before point. It defaults to 0.
1530
1531 CALLBACK is a function called with the selected result if the user successfully
1532 completes the input.
1533
1534 Example:
1535 \(company-begin-with '\(\"foo\" \"foobar\" \"foobarbaz\"\)\)"
1536 (setq company-begin-with-marker (copy-marker (point) t))
1537 (company-begin-backend
1538 `(lambda (command &optional arg &rest ignored)
1539 (cond
1540 ((eq command 'prefix)
1541 (when (equal (point) (marker-position company-begin-with-marker))
1542 (buffer-substring ,(- (point) (or prefix-length 0)) (point))))
1543 ((eq command 'candidates)
1544 (all-completions arg ',candidates))
1545 ((eq command 'require-match)
1546 ,require-match)))
1547 callback))
1548
1549 ;;; pseudo-tooltip ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1550
1551 (defvar company-pseudo-tooltip-overlay nil)
1552 (make-variable-buffer-local 'company-pseudo-tooltip-overlay)
1553
1554 (defvar company-tooltip-offset 0)
1555 (make-variable-buffer-local 'company-tooltip-offset)
1556
1557 (defun company-pseudo-tooltip-update-offset (selection num-lines limit)
1558
1559 (decf limit 2)
1560 (setq company-tooltip-offset
1561 (max (min selection company-tooltip-offset)
1562 (- selection -1 limit)))
1563
1564 (when (<= company-tooltip-offset 1)
1565 (incf limit)
1566 (setq company-tooltip-offset 0))
1567
1568 (when (>= company-tooltip-offset (- num-lines limit 1))
1569 (incf limit)
1570 (when (= selection (1- num-lines))
1571 (decf company-tooltip-offset)
1572 (when (<= company-tooltip-offset 1)
1573 (setq company-tooltip-offset 0)
1574 (incf limit))))
1575
1576 limit)
1577
1578 ;;; propertize
1579
1580 (defsubst company-round-tab (arg)
1581 (* (/ (+ arg tab-width) tab-width) tab-width))
1582
1583 (defun company-untabify (str)
1584 (let* ((pieces (split-string str "\t"))
1585 (copy pieces))
1586 (while (cdr copy)
1587 (setcar copy (company-safe-substring
1588 (car copy) 0 (company-round-tab (string-width (car copy)))))
1589 (pop copy))
1590 (apply 'concat pieces)))
1591
1592 (defun company-fill-propertize (line width selected)
1593 (setq line (company-safe-substring line 0 width))
1594 (add-text-properties 0 width '(face company-tooltip
1595 mouse-face company-tooltip-mouse)
1596 line)
1597 (add-text-properties 0 (length company-common)
1598 '(face company-tooltip-common
1599 mouse-face company-tooltip-mouse)
1600 line)
1601 (when selected
1602 (if (and company-search-string
1603 (string-match (regexp-quote company-search-string) line
1604 (length company-prefix)))
1605 (progn
1606 (add-text-properties (match-beginning 0) (match-end 0)
1607 '(face company-tooltip-selection)
1608 line)
1609 (when (< (match-beginning 0) (length company-common))
1610 (add-text-properties (match-beginning 0) (length company-common)
1611 '(face company-tooltip-common-selection)
1612 line)))
1613 (add-text-properties 0 width '(face company-tooltip-selection
1614 mouse-face company-tooltip-selection)
1615 line)
1616 (add-text-properties 0 (length company-common)
1617 '(face company-tooltip-common-selection
1618 mouse-face company-tooltip-selection)
1619 line)))
1620 line)
1621
1622 ;;; replace
1623
1624 (defun company-buffer-lines (beg end)
1625 (goto-char beg)
1626 (let (lines)
1627 (while (and (= 1 (vertical-motion 1))
1628 (<= (point) end))
1629 (push (buffer-substring beg (min end (1- (point)))) lines)
1630 (setq beg (point)))
1631 (unless (eq beg end)
1632 (push (buffer-substring beg end) lines))
1633 (nreverse lines)))
1634
1635 (defsubst company-modify-line (old new offset)
1636 (concat (company-safe-substring old 0 offset)
1637 new
1638 (company-safe-substring old (+ offset (length new)))))
1639
1640 (defsubst company--length-limit (lst limit)
1641 (if (nthcdr limit lst)
1642 limit
1643 (length lst)))
1644
1645 (defun company--replacement-string (lines old column nl &optional align-top)
1646
1647 (let ((width (length (car lines))))
1648 (when (> width (- (window-width) column))
1649 (setq column (max 0 (- (window-width) width)))))
1650
1651 (let (new)
1652 (when align-top
1653 ;; untouched lines first
1654 (dotimes (i (- (length old) (length lines)))
1655 (push (pop old) new)))
1656 ;; length into old lines.
1657 (while old
1658 (push (company-modify-line (pop old) (pop lines) column) new))
1659 ;; Append whole new lines.
1660 (while lines
1661 (push (concat (company-space-string column) (pop lines)) new))
1662
1663 (let ((str (concat (when nl "\n")
1664 (mapconcat 'identity (nreverse new) "\n")
1665 "\n")))
1666 (font-lock-append-text-property 0 (length str) 'face 'default str)
1667 str)))
1668
1669 (defun company--create-lines (selection limit)
1670
1671 (let ((len company-candidates-length)
1672 (numbered 99999)
1673 lines
1674 width
1675 lines-copy
1676 previous
1677 remainder
1678 new)
1679
1680 ;; Scroll to offset.
1681 (setq limit (company-pseudo-tooltip-update-offset selection len limit))
1682
1683 (when (> company-tooltip-offset 0)
1684 (setq previous (format "...(%d)" company-tooltip-offset)))
1685
1686 (setq remainder (- len limit company-tooltip-offset)
1687 remainder (when (> remainder 0)
1688 (setq remainder (format "...(%d)" remainder))))
1689
1690 (decf selection company-tooltip-offset)
1691 (setq width (max (length previous) (length remainder))
1692 lines (nthcdr company-tooltip-offset company-candidates)
1693 len (min limit len)
1694 lines-copy lines)
1695
1696 (dotimes (i len)
1697 (setq width (max (length (pop lines-copy)) width)))
1698 (setq width (min width (window-width)))
1699
1700 (setq lines-copy lines)
1701
1702 ;; number can make tooltip too long
1703 (when company-show-numbers
1704 (setq numbered company-tooltip-offset))
1705
1706 (when previous
1707 (push (propertize (company-safe-substring previous 0 width)
1708 'face 'company-tooltip)
1709 new))
1710
1711 (dotimes (i len)
1712 (push (company-fill-propertize
1713 (if (>= numbered 10)
1714 (company-reformat (pop lines))
1715 (incf numbered)
1716 (format "%s %d"
1717 (company-safe-substring (company-reformat (pop lines))
1718 0 (- width 2))
1719 (mod numbered 10)))
1720 width (equal i selection))
1721 new))
1722
1723 (when remainder
1724 (push (propertize (company-safe-substring remainder 0 width)
1725 'face 'company-tooltip)
1726 new))
1727
1728 (setq lines (nreverse new))))
1729
1730 ;; show
1731
1732 (defsubst company--window-inner-height ()
1733 (let ((edges (window-inside-edges (selected-window))))
1734 (- (nth 3 edges) (nth 1 edges))))
1735
1736 (defsubst company--pseudo-tooltip-height ()
1737 "Calculate the appropriate tooltip height.
1738 Returns a negative number if the tooltip should be displayed above point."
1739 (let* ((lines (company--row))
1740 (below (- (company--window-inner-height) 1 lines)))
1741 (if (and (< below (min company-tooltip-minimum company-candidates-length))
1742 (> lines below))
1743 (- (max 3 (min company-tooltip-limit lines)))
1744 (max 3 (min company-tooltip-limit below)))))
1745
1746 (defun company-pseudo-tooltip-show (row column selection)
1747 (company-pseudo-tooltip-hide)
1748 (save-excursion
1749
1750 (move-to-column 0)
1751
1752 (let* ((height (company--pseudo-tooltip-height))
1753 above)
1754
1755 (when (< height 0)
1756 (setq row (+ row height -1)
1757 above t))
1758
1759 (let* ((nl (< (move-to-window-line row) row))
1760 (beg (point))
1761 (end (save-excursion
1762 (move-to-window-line (+ row (abs height)))
1763 (point)))
1764 (ov (make-overlay beg end))
1765 (args (list (mapcar 'company-untabify
1766 (company-buffer-lines beg end))
1767 column nl above)))
1768
1769 (setq company-pseudo-tooltip-overlay ov)
1770 (overlay-put ov 'company-replacement-args args)
1771 (overlay-put ov 'company-before
1772 (apply 'company--replacement-string
1773 (company--create-lines selection (abs height))
1774 args))
1775
1776 (overlay-put ov 'company-column column)
1777 (overlay-put ov 'company-height (abs height))))))
1778
1779 (defun company-pseudo-tooltip-show-at-point (pos)
1780 (let ((col-row (company--col-row pos)))
1781 (when col-row
1782 (company-pseudo-tooltip-show (1+ (cdr col-row)) (car col-row)
1783 company-selection))))
1784
1785 (defun company-pseudo-tooltip-edit (lines selection)
1786 (let ((column (overlay-get company-pseudo-tooltip-overlay 'company-column))
1787 (height (overlay-get company-pseudo-tooltip-overlay 'company-height)))
1788 (overlay-put company-pseudo-tooltip-overlay 'company-before
1789 (apply 'company--replacement-string
1790 (company--create-lines selection height)
1791 (overlay-get company-pseudo-tooltip-overlay
1792 'company-replacement-args)))))
1793
1794 (defun company-pseudo-tooltip-hide ()
1795 (when company-pseudo-tooltip-overlay
1796 (delete-overlay company-pseudo-tooltip-overlay)
1797 (setq company-pseudo-tooltip-overlay nil)))
1798
1799 (defun company-pseudo-tooltip-hide-temporarily ()
1800 (when (overlayp company-pseudo-tooltip-overlay)
1801 (overlay-put company-pseudo-tooltip-overlay 'invisible nil)
1802 (overlay-put company-pseudo-tooltip-overlay 'before-string nil)))
1803
1804 (defun company-pseudo-tooltip-unhide ()
1805 (when company-pseudo-tooltip-overlay
1806 (overlay-put company-pseudo-tooltip-overlay 'invisible t)
1807 (overlay-put company-pseudo-tooltip-overlay 'before-string
1808 (overlay-get company-pseudo-tooltip-overlay 'company-before))
1809 (overlay-put company-pseudo-tooltip-overlay 'window (selected-window))))
1810
1811 (defun company-pseudo-tooltip-frontend (command)
1812 "A `company-mode' front-end similar to a tool-tip but based on overlays."
1813 (case command
1814 (pre-command (company-pseudo-tooltip-hide-temporarily))
1815 (post-command
1816 (let ((old-height (if (overlayp company-pseudo-tooltip-overlay)
1817 (overlay-get company-pseudo-tooltip-overlay
1818 'company-height)
1819 0))
1820 (new-height (company--pseudo-tooltip-height)))
1821 (unless (and (>= (* old-height new-height) 0)
1822 (>= (abs old-height) (abs new-height)))
1823 ;; Redraw needed.
1824 (company-pseudo-tooltip-show-at-point (- (point)
1825 (length company-prefix)))))
1826 (company-pseudo-tooltip-unhide))
1827 (hide (company-pseudo-tooltip-hide)
1828 (setq company-tooltip-offset 0))
1829 (update (when (overlayp company-pseudo-tooltip-overlay)
1830 (company-pseudo-tooltip-edit company-candidates
1831 company-selection)))))
1832
1833 (defun company-pseudo-tooltip-unless-just-one-frontend (command)
1834 "`company-pseudo-tooltip-frontend', but not shown for single candidates."
1835 (unless (and (eq command 'post-command)
1836 (not (cdr company-candidates)))
1837 (company-pseudo-tooltip-frontend command)))
1838
1839 ;;; overlay ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1840
1841 (defvar company-preview-overlay nil)
1842 (make-variable-buffer-local 'company-preview-overlay)
1843
1844 (defun company-preview-show-at-point (pos)
1845 (company-preview-hide)
1846
1847 (setq company-preview-overlay (make-overlay pos pos))
1848
1849 (let ((completion(nth company-selection company-candidates)))
1850 (setq completion (propertize completion 'face 'company-preview))
1851 (add-text-properties 0 (length company-common)
1852 '(face company-preview-common) completion)
1853
1854 ;; Add search string
1855 (and company-search-string
1856 (string-match (regexp-quote company-search-string) completion)
1857 (add-text-properties (match-beginning 0)
1858 (match-end 0)
1859 '(face company-preview-search)
1860 completion))
1861
1862 (setq completion (company-strip-prefix completion))
1863
1864 (and (equal pos (point))
1865 (not (equal completion ""))
1866 (add-text-properties 0 1 '(cursor t) completion))
1867
1868 (overlay-put company-preview-overlay 'after-string completion)
1869 (overlay-put company-preview-overlay 'window (selected-window))))
1870
1871 (defun company-preview-hide ()
1872 (when company-preview-overlay
1873 (delete-overlay company-preview-overlay)
1874 (setq company-preview-overlay nil)))
1875
1876 (defun company-preview-frontend (command)
1877 "A `company-mode' front-end showing the selection as if it had been inserted."
1878 (case command
1879 (pre-command (company-preview-hide))
1880 (post-command (company-preview-show-at-point (point)))
1881 (hide (company-preview-hide))))
1882
1883 (defun company-preview-if-just-one-frontend (command)
1884 "`company-preview-frontend', but only shown for single candidates."
1885 (unless (and (eq command 'post-command)
1886 (cdr company-candidates))
1887 (company-preview-frontend command)))
1888
1889 ;;; echo ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1890
1891 (defvar company-echo-last-msg nil)
1892 (make-variable-buffer-local 'company-echo-last-msg)
1893
1894 (defvar company-echo-timer nil)
1895
1896 (defvar company-echo-delay .01)
1897
1898 (defun company-echo-show (&optional getter)
1899 (when getter
1900 (setq company-echo-last-msg (funcall getter)))
1901 (let ((message-log-max nil))
1902 (if company-echo-last-msg
1903 (message "%s" company-echo-last-msg)
1904 (message ""))))
1905
1906 (defsubst company-echo-show-soon (&optional getter)
1907 (when company-echo-timer
1908 (cancel-timer company-echo-timer))
1909 (setq company-echo-timer (run-with-timer 0 nil 'company-echo-show getter)))
1910
1911 (defsubst company-echo-show-when-idle (&optional getter)
1912 (when (sit-for .01)
1913 (company-echo-show getter)))
1914
1915 (defsubst company-echo-show-when-not-busy (&optional getter)
1916 "Run `company-echo-show' with arg GETTER once Emacs isn't busy."
1917 (when (sit-for company-echo-delay)
1918 (company-echo-show getter)))
1919
1920 (defun company-echo-format ()
1921
1922 (let ((limit (window-width (minibuffer-window)))
1923 (len -1)
1924 ;; Roll to selection.
1925 (candidates (nthcdr company-selection company-candidates))
1926 (i (if company-show-numbers company-selection 99999))
1927 comp msg)
1928
1929 (while candidates
1930 (setq comp (company-reformat (pop candidates))
1931 len (+ len 1 (length comp)))
1932 (if (< i 10)
1933 ;; Add number.
1934 (progn
1935 (setq comp (propertize (format "%d: %s" i comp)
1936 'face 'company-echo))
1937 (incf len 3)
1938 (incf i)
1939 (add-text-properties 3 (+ 3 (length company-common))
1940 '(face company-echo-common) comp))
1941 (setq comp (propertize comp 'face 'company-echo))
1942 (add-text-properties 0 (length company-common)
1943 '(face company-echo-common) comp))
1944 (if (>= len limit)
1945 (setq candidates nil)
1946 (push comp msg)))
1947
1948 (mapconcat 'identity (nreverse msg) " ")))
1949
1950 (defun company-echo-strip-common-format ()
1951
1952 (let ((limit (window-width (minibuffer-window)))
1953 (len (+ (length company-prefix) 2))
1954 ;; Roll to selection.
1955 (candidates (nthcdr company-selection company-candidates))
1956 (i (if company-show-numbers company-selection 99999))
1957 msg comp)
1958
1959 (while candidates
1960 (setq comp (company-strip-prefix (pop candidates))
1961 len (+ len 2 (length comp)))
1962 (when (< i 10)
1963 ;; Add number.
1964 (setq comp (format "%s (%d)" comp i))
1965 (incf len 4)
1966 (incf i))
1967 (if (>= len limit)
1968 (setq candidates nil)
1969 (push (propertize comp 'face 'company-echo) msg)))
1970
1971 (concat (propertize company-prefix 'face 'company-echo-common) "{"
1972 (mapconcat 'identity (nreverse msg) ", ")
1973 "}")))
1974
1975 (defun company-echo-hide ()
1976 (unless (equal company-echo-last-msg "")
1977 (setq company-echo-last-msg "")
1978 (company-echo-show)))
1979
1980 (defun company-echo-frontend (command)
1981 "A `company-mode' front-end showing the candidates in the echo area."
1982 (case command
1983 (post-command (company-echo-show-soon 'company-echo-format))
1984 (hide (company-echo-hide))))
1985
1986 (defun company-echo-strip-common-frontend (command)
1987 "A `company-mode' front-end showing the candidates in the echo area."
1988 (case command
1989 (post-command (company-echo-show-soon 'company-echo-strip-common-format))
1990 (hide (company-echo-hide))))
1991
1992 (defun company-echo-metadata-frontend (command)
1993 "A `company-mode' front-end showing the documentation in the echo area."
1994 (case command
1995 (post-command (company-echo-show-when-idle 'company-fetch-metadata))
1996 (hide (company-echo-hide))))
1997
1998 ;; templates ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1999
2000 (autoload 'company-template-declare-template "company-template")
2001
2002 (provide 'company)
2003 ;;; company.el ends here