Browse Source

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

geequlim 5 years ago
parent
commit
e804eebfe5
1 changed files with 0 additions and 2 deletions
  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 {