浏览代码

Remove completion triggers for ',' and '(' which may conflict with signature helper

geequlim 5 年之前
父节点
当前提交
e804eebfe5
共有 1 个文件被更改,包括 0 次插入2 次删除
  1. 0 2
      modules/gdscript/language_server/lsp.hpp

+ 0 - 2
modules/gdscript/language_server/lsp.hpp

@@ -330,8 +330,6 @@ struct CompletionOptions {
 		triggerCharacters.push_back("$");
 		triggerCharacters.push_back("'");
 		triggerCharacters.push_back("\"");
-		triggerCharacters.push_back("(");
-		triggerCharacters.push_back(",");
 	}
 
 	Dictionary to_json() const {