Changed autocomplete to on by default

This commit is contained in:
Michael Schmatz 2014-06-19 10:44:44 -07:00
parent 2559a73244
commit 51923459e0
3 changed files with 3 additions and 3 deletions
app
schemas/models
views/play/level

View file

@ -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}

View file

@ -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'

View file

@ -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