forked from OSchip/llvm-project
[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:
parent
92f1028ceb
commit
e213e5a999
|
@ -115,9 +115,9 @@ void LSPServer::onInitialize(const InitializeParams ¶ms,
|
|||
{"completionProvider",
|
||||
llvm::json::Object{
|
||||
{"allCommitCharacters",
|
||||
{" ", "\t", "(", ")", "[", "]", "{", "}", "<",
|
||||
">", ":", ";", ",", "+", "-", "/", "*", "%",
|
||||
"^", "&", "#", "?", ".", "=", "\"", "'", "|"}},
|
||||
{"\t", "(", ")", "[", "]", "{", "}", "<", ">",
|
||||
":", ";", ",", "+", "-", "/", "*", "%", "^",
|
||||
"&", "#", "?", ".", "=", "\"", "'", "|"}},
|
||||
{"resolveProvider", false},
|
||||
{"triggerCharacters",
|
||||
{".", ">", "(", "{", ",", "<", ":", "[", " ", "\"", "/"}},
|
||||
|
|
Loading…
Reference in New Issue