4

As the title says, i am looking for code hinting for textmate and was wondering if there is anything out there and if it would work for Ruby on Rails

Thanks

ericraio
  • 1,469
  • 14
  • 35
  • 1
    This kind of thing is *very* hard to do with dynamic languages. And it's the job of a fully-blown IDE, not of a text editor. –  May 26 '11 at 19:28

1 Answers1

6

TextMate provides autocompletion for common tasks but it doesn't check the system for syntax correctness or anything like that. Ruby is too dynamic for true IDE-style autocompletion without serious work on the IDE-maker's end, but I'm pretty sure JRuby will result in some autocompletion support in the near future.

-- Giles Bowkett

Reference: Autocomplete (Code Completion) for Ruby in OS X's Textmate or Other

Another link would be : Autocomplete in Textmate

Community
  • 1
  • 1
Andrei Sfat
  • 8,440
  • 5
  • 49
  • 69