[mlir:PDLL] Drop space as a completion commit character

This causes annoyances when attempting to use space as
a trigger character (to start a different completion).
This commit is contained in:
River Riddle 2022-05-17 17:57:18 -07:00
parent 92f1028ceb
commit e213e5a999
1 changed files with 3 additions and 3 deletions

View File

@ -115,9 +115,9 @@ void LSPServer::onInitialize(const InitializeParams &params,
{"completionProvider",
llvm::json::Object{
{"allCommitCharacters",
{" ", "\t", "(", ")", "[", "]", "{", "}", "<",
">", ":", ";", ",", "+", "-", "/", "*", "%",
"^", "&", "#", "?", ".", "=", "\"", "'", "|"}},
{"\t", "(", ")", "[", "]", "{", "}", "<", ">",
":", ";", ",", "+", "-", "/", "*", "%", "^",
"&", "#", "?", ".", "=", "\"", "'", "|"}},
{"resolveProvider", false},
{"triggerCharacters",
{".", ">", "(", "{", ",", "<", ":", "[", " ", "\"", "/"}},