Questions tagged [erlide]

erlide is an open source Erlang IDE based on Eclipse.

38 questions
1
vote
2 answers

Beginners Erlang - hello_world

I have a similar problem to the this: -module(hello). -export([hello_world/0]). hello_world() -> io:fwrite("hello, world\n"). Result: (hello_world@PC)8> hello:hello_world(). ** exception error: undefined function…
Karel
  • 13
  • 1
  • 4
1
vote
1 answer

How to add dependency path in erlIDE?

I put cowboy in my project under deps folder, how to make erlide find it? Or I have to put it under ebin?
Comet Liao
  • 295
  • 2
  • 13
1
vote
2 answers

Eclipse Erlide how to choose default current directory

I have installed Erlide in Eclipse, and trying to create an application. The Erlang project is named demo. It contains three folders - ebin, include and src. The demo.erl file is in src, for simply printing Hello World. To run it in Eclipse shell,…
SexyBeast
  • 7,913
  • 28
  • 108
  • 196
1
vote
1 answer

Erlang: erlide syntax highlighting in eclipse ide?

I went under window->preferences->erlang (in the tree)->editor->syntax coloring to try changing the syntax coloring, similarly to Java but there is no option for it even though erlide 0.20.2 says it supports it on their site (under editor support).…
pandoragami
  • 5,387
  • 15
  • 68
  • 116
1
vote
1 answer

How to use YAWS in Erlide - Erlang

I have read that Erlang has a built-in webserver (YAWS); I am developing Erlang using the Eclipse plugin Erlide, I was wondering how I could access such a webserver, for example for running a simply 'hello world' PHP script; just for starting.
N3sh
  • 881
  • 8
  • 37
1
vote
1 answer

Running Rabbit MQ from Source in Eclipse / Erlide

I've clone the RabbitMQ repository opened as an Erlang project in Eclipse using the erlide.org plugin. I don't know how to run the application, and I have 249 errors. Please can someone explain how to make it run? EDIT - Example of some…
Nick
  • 1,845
  • 3
  • 15
  • 22
1
vote
2 answers

Erlide: how to set start module in run configuration?

I have problem with setting start module and function in "Run configuration" I'm doing it that way: "Run -> Run Configuration" and in "start" section I'm setting Module: mod, Function: hello my code: -module(mod). -export([hello/0]). hello()->…
zie1ony
  • 1,190
  • 2
  • 14
  • 33
1
vote
2 answers

erlide edoc generator

Does anyone know how to add automatic edoc to function in ErlIde? In java eclipse understands and and add some java doc when I put /* before function name is there similar functionality for ErlIde? Thanks in…
Ridvan
  • 23
  • 5
1
vote
2 answers

erlIDE compiler options

How do I specify compiler options in erlIDE? The answer to the question Erlang: add libraries to application is to add required libraries to the compiler options but i cant see how to do this with erlIDE ? Thanks,
Vivilar
  • 97
  • 2
  • 7
0
votes
1 answer

Eclipse erlide can't import some modules

I'm using eclipse erlide to write erlang code. My erlang OTP version is 19.0. However, there are some modules can't be used within erlide, such as inets, http, etc. I'm wondering how to use these modules in erlide?
billcyz
  • 1,219
  • 2
  • 18
  • 32
0
votes
1 answer

org.eclipse.core.runtime.CoreException: Plug-in org.erlide.ui was unable to load class org.erlide.ui.editors.erl.ErlangEditor

i have installed 3 version of erlang: R12B (5.6.5), R16B01 (5.10.2) and 18 (7.3). When i install erlang 18 i have this problem with Eclipse Juno (4.2.2): org.eclipse.core.runtime.CoreException: Plug-in org.erlide.ui was unable to load class…
md-86
  • 83
  • 9
0
votes
2 answers

Erlang preference page error in in Eclipse

I am new to erlang. I installed erlide plugi and When I try to open the Erlang Preferences (Window -> Preferences -> Erlang) I get the following error, "An error has occured when creating this preference page.". I have attached the logs for the…
0
votes
1 answer

erlide not compiling with eclipse

I am able to run my code using my installation of erlang, but I want to integrate it into eclipse. I am having problems setting up the run configurations. Below are screenshots of how I have the run configuration…
Alfie
  • 25
  • 4
0
votes
1 answer

Calling NIF in Erlide IDE

Is it possible to call NIF functions from an Erlang program using Erlide if so is there any tutorial,article to help me run my first example
Bou6
  • 84
  • 2
  • 10
0
votes
1 answer

Plug-in org.erlide.ui was unable to load class org.erlide.engine.ExecutableExtensionsFactory

I am getting the following error when I try to open any erlang files in the project: "Plug-in org.erlide.ui was unable to load class org.erlide.engine.ExecutableExtensionsFactory" and Updating Beta also got failed. My Eclipse version is Kepler…