From 80c00b13f75462617942014535b55427133d4d7f Mon Sep 17 00:00:00 2001 From: Nate Stemen Date: Mon, 11 Sep 2017 11:27:03 +0100 Subject: [PATCH] Raising the limit on safari regex count --- .../directives/aceEditor/auto-complete/CommandManager.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/CommandManager.coffee b/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/CommandManager.coffee index 0a202a7793..2d928f9a82 100644 --- a/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/CommandManager.coffee +++ b/services/web/public/coffee/ide/editor/directives/aceEditor/auto-complete/CommandManager.coffee @@ -79,7 +79,7 @@ define [], () -> # hacky solution: limit iterations limit = null if window?._ide?.browserIsSafari - limit = 100 + limit = 5000 # fully formed commands realCommands = []