弹出窗口打开时,Eclipse Luna 停止在 Debian 中工作

Eclipse Luna stop working in Debian when pop-up open

每次我转到 Eclipse-luna IDE 并在我创建的 class 中输入一行代码并且代码助手打开带有建议的弹出窗口时,停止运行 eclipse如果我终止进程并重新运行 eclipse,则只会再次 运行s。

我的OS是系统默认安装的最新稳定版kali(debian based with kernel 3.18.3)x86_64 with open-jdk 1.6和1.7。

谢谢大家。

我可以找出问题并解决同样的问题,请在下面描述它是如何完成的,以帮助遇到同样问题的人。首先,我使用直接从站点下载或使用 wget 的最新稳定版本的 eclipse-luna。打开您的 eclipse.ini 文件并在 --launcher.appendVmargs 前一行输入以下两行:

`

--launcher.GTK_version
2

`

并准备好您的 eclipse 已经在 debian 中正常运行,记得我之前必须将 -showsplash 更改为 -nosplash。

下面我留下了我的 eclipse.ini 的精确副本,记住这意味着已经调整。

`

-startup
plugins/org.eclipse.equinox.launcher_1.3.0.v20140415-2008.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20150204-1316
-product
org.eclipse.epp.package.jee.product
--launcher.defaultAction
openFile
-nosplash
org.eclipse.platform
--launcher.XXMaxPermSize
512m
--launcher.defaultAction
openFile
--launcher.GTK_version
2
--launcher.appendVmargs
-vmargs
-Dosgi.requiredJavaVersion=1.6
-XX:MaxPermSize=512m
-Xms80m
-Xmx1024m

`

Thanks for all