mirror of
https://github.com/icecoder/ICEcoder.git
synced 2026-03-03 07:13:59 +01:00
Add defaults for 2 new options
This commit is contained in:
@@ -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"] . ";" .
|
||||
|
||||
Reference in New Issue
Block a user