Table of Contents
How can I import Scala code to Eclipse?
How can I run Eclipse on OS X?
How can I fix the background color of Eclipse tooltips?
How can I import Scala code to Eclipse?
22 Nov 2014
-
eclipse,
scala
Add sbteclipse to your plugin definition file. For sbt version 0.13 and up, add
the following to ~/.sbt/0.13/plugins/plugins.sbt
.
addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "2.5.0")
References
How can I run Eclipse on OS X?
15 Nov 2014
-
osx,
eclipse
- Run
/usr/libexec/java_home -V
to find the location of an installed JDK. - To launch Eclipse from Finder, follow the instructions at
http://stackoverflow.com/a/25486012/130224
to set the
-vm
flag ofEclipse.app/Contents/Info.plist
. - To run Eclipse from the command line, run
Eclipse.app/Contents/MacOS/eclipse
.
References
How can I fix the background color of Eclipse tooltips?
21 Feb 2013
-
linux,
eclipse
Open the file at /usr/share/themes/Ambiance/gtk-2.0/gtkrc
. Locate
tooltip_fg_color
and tooltip_bg_color
in the file and change their values as
follows:
tooltip_fg_color:#000000
tooltip_bg_color:#f5f5c5
References