We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e154a4c commit 11b0393Copy full SHA for 11b0393
company-phpactor.el
@@ -32,6 +32,17 @@
32
(require 'company)
33
(require 'phpactor)
34
35
+(defgroup company-phpactor nil
36
+ "Company backend for Phpactor."
37
+ :prefix "company-phpactor-"
38
+ :group 'company
39
+ :group 'phpactor)
40
+
41
+(defcustom company-phpactor-request-async t
42
+ "When non-NIL, asynchronous recuest to Phpactor."
43
+ :type 'boolean
44
+ :group 'company-phpactor)
45
46
(defun company-phpactor--grab-symbol ()
47
"If point is at the end of a symbol, return it.
48
Otherwise, if point is not inside a symbol, return an empty string.
0 commit comments