user618815
user618815

Reputation:

Input greek characters in eclipse?

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

Answers (1)

Bozho
Bozho

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

Related Questions