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've found simmilar question: Ace Editor autocomplete and multiple languages

But the responses were that autocompletion is not supported by ACE, and according to Google group for Ace Editor "It is on my wishlish for Ace and we definitively need it for Cloud9".

This post is one year old and as you can see, the cloud9 supports autocompletion now: https://c9.io/site/features/

So is autocompletion available in Ace Editor by default? I cannot find any information about it.

share|improve this question

2 Answers

up vote 5 down vote accepted

Autocompletion is still not available natively for Ace, however we have implemented a component doing that for the Codiad IDE which is based on Ace and fully open source. You can check the code on Github, it will surely help you to write your own.

share|improve this answer
I can see some great piece of work over there. I've had a look into your init.js file. Could you please help me as to how this thing is integrated into Ace? Where/How is it being loaded? – Dr.Kameleon Feb 22 at 7:22
It is not integrated into Ace as such, see it more like a component that we add on top of it. We intercept the keyboard shortcut (Ctrl+Space) and open a popup that we fill with suggestions. We use the Ace api to get the text from the document to build the suggestions and to eventually insert the suggestion text. Have a look at the 'keybindings' component, it might help a bit. – Flolagale Feb 22 at 15:26
Thanks a lot for the suggestions! I'll definitely have a look into it. :-) – Dr.Kameleon Feb 22 at 17:16

Currently it's not available in any form. According to this issue: https://github.com/ajaxorg/ace/issues/1031

Autocomplete is only available in Cloud9 IDE (which is based on ACE) and may be available later as a separate plugin for ACE Editor.

share|improve this answer
Could you please tell me additional 2 things: Is not cloud9 open source (or some of its functionality is not open source?) and not to create separate question - if you know - what library is the cloud9 gui written in ? – danilo2 Nov 25 '12 at 22:31
1) Yes, some functionality isn't open source 2) They're using own framework for UI - ui.ajax.org – Inferpse Nov 26 '12 at 9:51
The gherkin editor based on Ace seems to have it. github.com/cucumber/gherkin-editor/blob/master/public/js/… – Will Sargent Dec 13 '12 at 21:31
Yep, but this haven't updated for a long time and I'm not sure it's compatible with current ACE version. And this is just basic autocomplete engine for ACE - so you'll have to write autocompletion options for each language to make it work. – Inferpse Dec 14 '12 at 10:14

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.