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 bdfee69 commit 3ca25e6Copy full SHA for 3ca25e6
lsp-mode.el
@@ -5170,12 +5170,13 @@ It will show up only if current point has signature help."
5170
"Handler for editor.action.triggerSuggest."
5171
(cond
5172
((and company-mode
5173
- (fboundp 'company-complete)
+ (fboundp 'company-auto-begin)
5174
(fboundp 'company-post-command))
5175
- (run-at-time nil nil
+ (run-at-time 0 nil
5176
(lambda ()
5177
- (company-complete)
5178
- (company-post-command))))
+ (company-auto-begin)
+ (let ((this-command 'company-idle-begin))
5179
+ (company-post-command)))))
5180
(t
5181
(completion-at-point))))
5182
0 commit comments