Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I can set language modes for javascript, css, html, json by this construction:

var JavaScriptMode = require("ace/mode/javascript").Mode;
editor.getSession().setMode(new JavaScriptMode());

But I can't set language modes for ruby, java and maybe for another languages.

In my project I have a folder with ace's files like these:

mode-javascript.js
mode-html.js
mode-css.js
mode-json.js
mode-java.js
mode-ruby.js
...

I assume that these files used to set language mode but why it possible for some languages but not for another languages?

share|improve this question

1 Answer

up vote 2 down vote accepted

It requires to connect javascript library in html page:

<script src="js/ace-0.2.0/src/mode-ruby.js"></script>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.