问题标签 [erlide]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
php - 如何在 Erlide 中使用 YAWS - Erlang
我读过 Erlang 有一个内置的网络服务器(YAWS);我正在使用 Eclipse 插件 Erlide 开发 Erlang,我想知道如何访问这样的网络服务器,例如运行一个简单的“hello world”PHP 脚本;只是为了开始。
eclipse - 山狮osx上的eclipse juno erlide运行时设置问题
我有一个新的开发箱(mountain lion osx 10.8.1),我正在尝试使用 erlide 插件设置 eclipse。我安装了不同版本的 erlang,如下所示:
在 下Eclipse --> Preferences --> Erlang --> Installed Runtime
,我有以下运行时设置:
当我切换到 Erlang 透视图时,我可以在里面看到以下日志erlide.log
:
这很好,但现在当我继续尝试创建项目或单击进程列表视图时,erlide.log
文件被以下日志消息轰炸,使 eclipse 无法使用:
虽然这一切都在进行,但我试图检查我的开发箱上正在运行哪些 erlang 节点,我发现了这一点:
Now I am not sure what can be done here to get this up and running. I was planning to have multiple erlang runtimes inside erlide since I will need different run configuration for my different projects. Unfortunately, I am stuck here at the very first step.
Any help, pointers will be greatly appreciated.
erlang - 当 erlide 尝试运行时 Eclipse 冻结
我刚刚开始使用 erlide,使用全新安装的 Eclipse Juno 和 erlide。我已经从命令行在我的系统(64 位 Fedora)上使用了 erlang,所以我只是想进行切换。我从 R15B 开始,并按照另一篇 SO 帖子的建议升级到 R15B02(从源代码构建)。如果我右键单击一个 .erl 文件并选择 Run As..Erlang Application,IDE 将冻结,我必须将其杀死。如果我尝试从 Run Configurations 运行并指定模块和函数,它将开始执行,但永远不会超过 27%。这是一个在命令行上即时运行的简单函数。
erlide - 外部库的构建路径 erlide
我正在使用 couchbeam 开发一个 erlang 应用程序。我是 erlang 的新手,在 erlide 工作对我来说会更容易。
我在java中使用过eclipse,添加外部库很容易。我试图找出如何在 erlide 中为那些外部库构建路径,但我没有找到任何解决方案。当我查看提出的问题时,我发现 Erlang: add libraries to application应该与我的问题类似,但我不明白它是如何完成的,因为它与我们在添加外部 jar 文件时所做的不同,例如!
如果没有解决方案,我会问是否有人可以帮助我解决 Emacs 中的相同问题
问候
eclipse - Erlang:在 Eclipse IDE 中突出显示 erlide 语法?
我在 window->preferences->erlang (在树中)->editor->syntax coloring 下尝试更改语法着色,类似于 Java,但即使 erlide 0.20.2 表示它支持它也没有选项他们的网站(在编辑支持下)。我正在使用 Eclipse Juno 和 erlide 0.20.3。有什么建议么?
eclipse - Eclipse Erlide 如何选择默认当前目录
我已经在 Eclipse 中安装了 Erlide,并尝试创建一个应用程序。Erlang 项目名为demo。它包含三个文件夹 - ebin、include和src。该demo.erl
文件在src
,用于简单地打印Hello World。
要在 Eclipse shell 中运行它,我从顶部菜单中选择Run ,然后单击Run as Erlang Application。然后在边栏中打开一个控制台。在那里我输入c(demo)并按CTRL-Enter
。然后我收到一条错误消息,例如demo.erl:none: no such file or directory。
然后我做pwd()
了,它显示C:/Users/myName/Desktop/eclipse-jee-juno-SR1-win32-x86_64/eclipse即使 Erlang 项目在工作区C:/Users/myName/Desktop/workspace/Erlang。有没有办法让 Erlide 直接从他们的目录运行所有 Erlang 应用程序?
erlide - 如何在erlIDE中添加依赖路径?
我把cowboy放在我的项目deps文件夹下,怎么让erlide找到呢?或者我必须把它放在 ebin 下?
erlang - Does Erlide ( Erlang IDE on Eclipse ) work well with source control systems ( Git or SVN )?
I've been working on several projects involving Erlang in Eclipse ( using the Erlide plugin ) and dealing with erlang is somehow problematic in such IDE since it is hard to visualize the set of changes across all erlang source files that were modified.
When I use Netbeans for Java purposes, integrated to a centralized SVN, I can see all add/update/delete changes in different collors, compared to the last time I have committed such changes in source control system.
I tried to achieve the same with Eclipse + Erlide, but it does not appear possible. Somehow it is hard to understand the visual benefits of that.
Did anyone succeed well using a version control with Erlide, for the above purposes ?
eclipse - Erlang 初学者 - hello_world
我有一个类似的问题:
结果:
但说明
“解决这个问题的方法:
转到:运行配置
--Erlang
选择选项卡:
-- Environment
然后
--选择
检查
--路径
应用并运行。”
不要解决我的问题。
是不是我的软件,因为弄到其中的一些是很麻烦的。我有用于 Eclipse 4.2.2 的带有 Erlide 插件(版本 0.9.0.201010061109)的 Erlang 5.10.1 R16B?
任何帮助将不胜感激!
eclipse - 在eclipse中运行Erlang线程时控制台无输出
我是 Erlang 的新手。IDE 运行良好,直到我使用 spawn 方法创建了我的第一个并发程序。如果我输入“tut15:start()”之类的命令来启动一个应该输出字符串的线程,控制台将不会显示任何内容。我在 CMD 中尝试了该模块,它可以工作。所以我只是想知道这是一个错误还是我应该在某个地方设置我的偏好。