File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -145,7 +145,7 @@ std::string VSCommand::trimString(const std::string str) {
145145}
146146
147147std::string VSCommand::removeVariableNamePrefix (const std::string& str) {
148- if (str.find (" $ " ) == 0 ) {
148+ if (str.find (' $ ' ) == 0 ) {
149149 return str.substr (1 );
150150 } else if (str.find (" ::$" ) == 0 ) {
151151 return str.substr (3 );
Original file line number Diff line number Diff line change @@ -267,8 +267,8 @@ void CompletionsCommand::addMemberCompletions(
267267 // Don't execute the evaluation if the input string looks like it might
268268 // contain a function call. This could have side effects we don't want to
269269 // cause during auto complete suggestions and it's better to be safe here.
270- if (context.matchContext .find (" ( " ) != std::string::npos ||
271- context.matchContext .find (" ) " ) != std::string::npos ||
270+ if (context.matchContext .find (' ( ' ) != std::string::npos ||
271+ context.matchContext .find (' ) ' ) != std::string::npos ||
272272 trimString (context.matchContext ).size () == 0 ) {
273273
274274 return ;
You can’t perform that action at this time.
0 commit comments