lang/faust: fix unfiltered code completion
This commit is contained in:
parent
c649401a92
commit
7f44774c43
1 changed files with 2 additions and 1 deletions
|
@ -9,4 +9,5 @@
|
||||||
(prefix (and (derived-mode-p 'faust-mode)
|
(prefix (and (derived-mode-p 'faust-mode)
|
||||||
(not (company-in-string-or-comment))
|
(not (company-in-string-or-comment))
|
||||||
(or (company-grab-symbol-cons "\\." 1) 'stop)))
|
(or (company-grab-symbol-cons "\\." 1) 'stop)))
|
||||||
(candidates faust-keywords-all)))
|
(candidates (cl-remove-if-not (lambda (c) (string-prefix-p arg c))
|
||||||
|
faust-keywords-all))))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue