Dan Freeman
Dan Freeman
You can already set a custom mode today by doing something like: ```js // app/controllers/some-route.js import Ember from 'ember'; import { TextMode } from 'ember-ace'; class MyCustomMode extends TextMode {...
I would expect the standard pattern for configuring an engine to work, something like: ```js module.exports = EngineAddon.extend({ ace: { // ember-ace config here } }); ``` If it doesn't,...
Is your engine lazy or eager? It's possible you're hitting https://github.com/ember-engines/ember-engines/issues/386
PRs welcome :)
The `fillIn` helper in ember-cli-page-object isn't a perfect imitation of all the events that real user interactions tend to produce. You could try using `ember-native-dom-helpers` to see if a more...
I haven't seen an in-Ace notion of tabs — is there documentation for that somewhere? You're definitely right that changing the `value` attribute can lead to some weird behavior. You...
There's a (fuzzy) distinction between Ace itself, which is just the editor, and the Cloud9 platform as a whole, which includes all the rest of the "IDE stuff" like tab/pane...
It's entirely possible that there could be value in an addon wrapping up the Cloud9 platform as a whole — I haven't looked into it in much depth because I...
Hi @momohuri—this library is only a pretty thin wrapper over the Ace editor, so it's up to Ace when it asks for completions. You're probably better off checking the documentation...
Hi @panthony — there are some sketchy details laid out in https://github.com/dfreeman/ember-ace/issues/8, but there's no definitive guide beyond that right now. At some point I'd like to write up a...