mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
lang/faust: fix unfiltered code completion
This commit is contained in:
@ -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))))
|
||||||
|
Reference in New Issue
Block a user