I'm starting a project using Qooxdoo and emacs with js2-mode(great tool btw) but I have a little problem: no auto complete support for the qooxdoo framework classes. Currently I have auto-complete-mode enabled, but it doesn't help when I need to remember the framework classes.
Notes: - I'm using emacs 24. - If needed, I can drop auto-complete-mode and use company-mode instead.
Thanks!
Edit: To make this work, I did a little script to get the class names from the framework/source/class directory:
find . -iname '*.js' -print0 | while read -d $'\0' file
do
grep '^qx.Class.define(".*",$' $file | sed 's/qx\.Class\.define("\(.*\)",/\1/' >> ~/.emacs.d/ac-dict/js2-mode
done
After that, just followed the answer from sanityinc everything worked as expected. Thanks!