UnityScript editor with code completion (MonoDevelop?) (MacOSX)

Hi guys,

is there anyway to get ANY descent UNityScript editor ?? Like we have UnityDevelop under windwos ?

Unitron is a pain to work :(

Is there anyway to setup the provided MonoDevelop to code completion the UnityScript ??

Thanks..

The customized version of MonoDevelop that ships with Unity 3.0f5 has some but incomplete code completion for UnityScript. It's somewhat better than Unitron, and promises to get more polished going forward.

I found that if i just wrap my javascript files in a class definition then all the autocomplete works great.

// example
// LookAt.js

// ADD THE CLASS DEFINITION INSTEAD OF CREATING A BLANK SCRIPT
class LookAt extends MonoBehavior
{

  var target:Transform

  function Update()
  {
    transform.LookAt(target)
  }
}

Everything above should be autocompleted for you now inside MonoDevelop because you wrapped it inside the class definition