-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathalchemist-company.el
152 lines (124 loc) · 6.03 KB
/
alchemist-company.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
;;; alchemist-company.el --- Elixir company-mode backend -*- lexical-binding: t -*-
;; Copyright © 2014-2017 Samuel Tonini
;; Author: Samuel Tonini <[email protected]
;; This file is not part of GNU Emacs.
;; This program is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;; Elixir company-mode backend.
;;; Code:
(require 'cl-lib)
(require 'company)
(require 'alchemist-help)
(require 'alchemist-goto)
(require 'alchemist-scope)
(require 'alchemist-server)
(require 'alchemist-complete)
(defgroup alchemist-company nil
"Elixir company-mode backend."
:prefix "alchemist-company-"
:group 'alchemist)
;; Variables
(defcustom alchemist-company-show-annotation t
"Show an annotation inline with the candidate."
:type 'boolean
:group 'alchemist-company)
(defvar alchemist-company-callback nil)
(defvar alchemist-company-doc-callback nil)
(defvar alchemist-company-filter-output nil)
(defvar alchemist-company-last-completion nil)
(defun alchemist-company-show-documentation (candidate)
(interactive)
(let* ((annotation (alchemist-company--annotation candidate))
(candidate (if annotation
(format "%s%s" candidate annotation)
candidate))
(candidate (alchemist-help--prepare-search-expr candidate)))
(alchemist-server-help (alchemist-help--server-arguments candidate) #'alchemist-company-doc-buffer-filter)))
(defun alchemist-company-open-definition (candidate)
(interactive)
(alchemist-goto--open-definition candidate))
(defun alchemist-company--annotation (candidate)
(get-text-property 0 'meta candidate))
(defun alchemist-company-build-scope-arg (arg)
"Build informations about the current context."
(let* ((modules (alchemist-utils-prepare-modules-for-elixir
(alchemist-scope-all-modules)))
(aliases (alchemist-utils-prepare-aliases-for-elixir
(alchemist-scope-aliases))))
(format "{ \"%s\", [ context: Elixir, imports: %s, aliases: %s ] }" arg modules aliases)))
(defun alchemist-company-build-server-arg (arg)
(if (not (equal major-mode 'alchemist-iex-mode))
(alchemist-company-build-scope-arg arg)
(format "{ \"%s\", [ context: [], imports: [], aliases: [] ] }" arg)))
(defun alchemist-company-filter (_process output)
(setq alchemist-company-filter-output (cons output alchemist-company-filter-output))
(if (alchemist-server-contains-end-marker-p output)
(let* ((candidates (alchemist-complete--build-candidates-from-process-output alchemist-company-filter-output)))
(setq alchemist-company-filter-output nil)
(alchemist-company-serve-candidates-to-callback (-distinct candidates)))))
(defun alchemist-company-doc-buffer-filter (_process output)
(setq alchemist-company-filter-output (cons output alchemist-company-filter-output))
(if (alchemist-server-contains-end-marker-p output)
(let ((string (alchemist-server-prepare-filter-output alchemist-company-filter-output)))
(setq alchemist-company-filter-output nil)
(if (get-buffer alchemist-help-buffer-name)
(kill-buffer alchemist-help-buffer-name))
(with-current-buffer (get-buffer-create alchemist-help-buffer-name)
(insert string)
(ansi-color-apply-on-region (point-min) (point-max))
(alchemist-help-minor-mode 1))
(funcall alchemist-company-doc-callback (get-buffer alchemist-help-buffer-name)))))
(defun alchemist-company-serve-candidates-to-callback (candidates)
(let* ((candidates (if candidates
candidates
(alchemist-complete--dabbrev-code-candidates)))
(candidates (-distinct candidates)))
(funcall alchemist-company-callback candidates)))
(defun alchemist-company-get-prefix ()
(if (or (looking-at "\s") (eolp))
(unless (looking-back ".+:" nil)
(alchemist-scope-expression))))
(defun alchemist-company (command &optional arg &rest ignored)
"`company-mode' completion back-end for Elixir."
(interactive (list 'interactive))
(when alchemist-company-show-annotation
(set 'company-tooltip-align-annotations t))
(cl-case command
(interactive (company-begin-backend 'alchemist-company))
(init (or (eq major-mode 'elixir-mode)
(string= mode-name "Alchemist-IEx")))
(prefix (and (or (eq major-mode 'elixir-mode)
(string= mode-name "Alchemist-IEx"))
(alchemist-company-get-prefix)))
(doc-buffer (cons :async
(lambda (cb)
(setq alchemist-company-doc-callback cb)
(alchemist-company-show-documentation arg))))
(location (alchemist-company-open-definition arg))
(candidates (cons :async
(lambda (cb)
(setq alchemist-company-last-completion arg)
(setq alchemist-company-callback cb)
(alchemist-server-complete-candidates (alchemist-company-build-server-arg arg)
#'alchemist-company-filter))))
(annotation (when alchemist-company-show-annotation
(alchemist-company--annotation arg)))))
(add-hook 'alchemist-mode-hook
(lambda ()
(add-to-list (make-local-variable 'company-backends)
'alchemist-company)))
(add-hook 'alchemist-iex-mode-hook
(lambda ()
(add-to-list (make-local-variable 'company-backends)
'alchemist-company)))
(provide 'alchemist-company)
;;; alchemist-company.el ends here