Reputation:
I used emacs with haskell mode, now I am trying to use the IDE in eclipse with eclipseFP plug-in support, the problem is that eclipse is unable to recognize (nor input) greek characters! So how can I make eclipse to recognize and input greek characters?
Upvotes: 4
Views: 2506
Reputation: 597116
The workspace, and each file have an encoding setting - change it to UTF-8 (type "encoding" in the properties dialog)
That said, you should not put greek characters into your code. Use english, and externalize i18nized values.
Upvotes: 2