| Index: third_party/WebKit/Source/devtools/front_end/console/ConsolePrompt.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/console/ConsolePrompt.js b/third_party/WebKit/Source/devtools/front_end/console/ConsolePrompt.js
|
| index c111f3f6fce0acf407c0a1c8de2cb16eaa1f6feb..acd14c9c8e3e146858be077d6b0d3d809455375a 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/console/ConsolePrompt.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/console/ConsolePrompt.js
|
| @@ -276,7 +276,7 @@ WebInspector.ConsolePrompt.prototype = {
|
| var prefix = this._editor.text(prefixRange);
|
| var before = this._editor.text(new WebInspector.TextRange(0, 0, prefixRange.startLine, prefixRange.startColumn));
|
| var historyWords = this._historyCompletions(prefix);
|
| - WebInspector.ExecutionContextSelector.completionsForTextInCurrentContext(before, prefix, false /* Don't force */, innerWordsWithPrefix);
|
| + WebInspector.ExecutionContextSelector.completionsForTextInCurrentContext(before, prefix, true /* force */, innerWordsWithPrefix);
|
| return promise;
|
|
|
| /**
|
|
|