refactor: store reported lsp trigger characters to main view lsp info
This commit is contained in:
parent
4f737e4019
commit
fe2ea13024
1 changed files with 3 additions and 0 deletions
|
|
@ -533,6 +533,9 @@ fn receive_safe(self: *Self, from: tp.pid_ref, m: tp.message) !void {
|
|||
if (try m.match(.{ "PRJ", "vcs_content", tp.more }))
|
||||
return if (mainview()) |mv| mv.vcs_content_update(m);
|
||||
|
||||
if (try m.match(.{ "PRJ", "triggerCharacters", tp.more }))
|
||||
return if (mainview()) |mv| mv.lsp_info.add_from_event(m.buf);
|
||||
|
||||
if (try m.match(.{ "PRJ", tp.more })) // drop late project manager query responses
|
||||
return;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue