forked from OSchip/llvm-project
[mlir:LSP] Remove several more annoying completion commit characters
These characters are annoying in that they accept completions that weren't intended, causing user frustration.
This commit is contained in:
parent
f494f89b2a
commit
362c4e68c9
|
@ -100,7 +100,13 @@ void LSPServer::onInitialize(const InitializeParams ¶ms,
|
|||
{"completionProvider",
|
||||
llvm::json::Object{
|
||||
{"allCommitCharacters",
|
||||
{"\t", ";", ",", "+", "-", "/", "*", "&", "?", ".", "=", "|"}},
|
||||
{
|
||||
"\t",
|
||||
";",
|
||||
",",
|
||||
".",
|
||||
"=",
|
||||
}},
|
||||
{"resolveProvider", false},
|
||||
{"triggerCharacters",
|
||||
{".", "%", "^", "!", "#", "(", ",", "<", ":", "[", " ", "\"", "/"}},
|
||||
|
|
Loading…
Reference in New Issue