mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-03-28 22:00:25 -04:00
Changed autocomplete to on by default
This commit is contained in:
parent
2559a73244
commit
51923459e0
3 changed files with 3 additions and 3 deletions
app
|
@ -65,7 +65,7 @@ UserSchema = c.object {},
|
|||
invisibles: {type: 'boolean', 'default': false}
|
||||
indentGuides: {type: 'boolean', 'default': false}
|
||||
behaviors: {type: 'boolean', 'default': false}
|
||||
liveCompletion: {type: 'boolean', 'default': false}
|
||||
liveCompletion: {type: 'boolean', 'default': true}
|
||||
|
||||
simulatedBy: {type: 'integer', minimum: 0, default: 0}
|
||||
simulatedFor: {type: 'integer', minimum: 0, default: 0}
|
||||
|
|
|
@ -13,7 +13,7 @@ module.exports = class EditorConfigModal extends View
|
|||
invisibles: false
|
||||
indentGuides: false
|
||||
behaviors: false
|
||||
liveCompletion: false
|
||||
liveCompletion: true
|
||||
|
||||
events:
|
||||
'change #tome-invisibles': 'updateInvisibles'
|
||||
|
|
|
@ -96,7 +96,7 @@ module.exports = class SpellView extends View
|
|||
@aceSession.selection.on 'changeCursor', @onCursorActivity
|
||||
$(@ace.container).find('.ace_gutter').on 'click', '.ace_error, .ace_warning, .ace_info', @onAnnotationClick
|
||||
@zatanna = new Zatanna @ace,
|
||||
liveCompletion: aceConfig.liveCompletion ? false
|
||||
liveCompletion: aceConfig.liveCompletion ? true
|
||||
completers:
|
||||
keywords: false
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue