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",
|
{"completionProvider",
|
||||||
llvm::json::Object{
|
llvm::json::Object{
|
||||||
{"allCommitCharacters",
|
{"allCommitCharacters",
|
||||||
{"\t", ";", ",", "+", "-", "/", "*", "&", "?", ".", "=", "|"}},
|
{
|
||||||
|
"\t",
|
||||||
|
";",
|
||||||
|
",",
|
||||||
|
".",
|
||||||
|
"=",
|
||||||
|
}},
|
||||||
{"resolveProvider", false},
|
{"resolveProvider", false},
|
||||||
{"triggerCharacters",
|
{"triggerCharacters",
|
||||||
{".", "%", "^", "!", "#", "(", ",", "<", ":", "[", " ", "\"", "/"}},
|
{".", "%", "^", "!", "#", "(", ",", "<", ":", "[", " ", "\"", "/"}},
|
||||||
|
|
Loading…
Reference in New Issue