Add defaults for 2 new options

This commit is contained in:
mattpass
2021-04-11 11:35:49 +01:00
parent da88db20fb
commit 2d03477c66

View File

@@ -140,8 +140,8 @@ if (true === $havePrettier && true === file_exists(dirname(__FILE__) . "/plugins
"ICEcoder.demoMode = " . ($ICEcoder["demoMode"] ? 'true' : 'false') . ";" .
"ICEcoder.tagWrapperCommand = '" . $ICEcoder["tagWrapperCommand"] . "';" .
"ICEcoder.autoComplete = '" . $ICEcoder["autoComplete"] . "';" .
"ICEcoder.selectNextOnFindInput = " . ($ICEcoder["selectNextOnFindInput"] ? 'true' : 'false') . ";" .
"ICEcoder.goToLineScrollSpeed = '" . $ICEcoder["goToLineScrollSpeed"] . "';" .
"ICEcoder.selectNextOnFindInput = " . ($ICEcoder["selectNextOnFindInput"] ?? true ? 'true' : 'false') . ";" .
"ICEcoder.goToLineScrollSpeed = '" . ($ICEcoder["goToLineScrollSpeed"] ?? 5) . "';" .
"ICEcoder.bugFilePaths = ['" . implode("','",$ICEcoder["bugFilePaths"]) . "'];" .
"ICEcoder.bugFileCheckTimer = ".$ICEcoder["bugFileCheckTimer"] . ";" .
"ICEcoder.bugFileMaxLines = " . $ICEcoder["bugFileMaxLines"] . ";" .