Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: provide a method to inhibit inline completion mode
Add a list of predicates that can inhibit triggering inline completions -- e.g.: ```elisp (defun lsp-inline-completion-inhibit-if-company-active () (and (bound-and-true-p company-mode) (company--active-p))) (push 'lsp-inline-completion-inhibit-if-company-active lsp-inline-completion-inhibit-predicates) ```
- Loading branch information