Ensime is the ENhanced Scala Interaction Mode for Emacs. It provides a new mode for the well-known editor Emacs, enabling a number of new capabilities when editing Scala source code.
0
votes
0answers
27 views
Ensime configuration for scala library
This is the code I'm trying to run:
import scalaj.http.Http
Http("http://foo.com/search").param("q","monkeys").asString
I am getting a red bar inside emacs at line 1, which I believe is ensime ...
0
votes
0answers
57 views
sbt cannot resolve ensime-sbt-cmd in a Play2-Scala project
I'm trying to configure Sublime Text 2 to better support working with Scala and Play! 2 Framework by following instructions from ...
0
votes
1answer
138 views
Ensime inferior scala mode
I've setup Emacs + Ensime for scala.
I'm able to start sbt console inside emacs using C-c C-v s
If i start scala console inside emacs using C-c C-v z, I get the following error
Welcome to Scala ...
1
vote
0answers
58 views
Adding/using parameter completion support for Ensime
When using Ensime (specificially in Emacs for me, although I suspect this question applies to other Ensime integrations), I often miss the support provided by IntelliJ for parameter completion - that ...
1
vote
3answers
207 views
'ensime generate' is not a valid sbt command
I'm trying to use sbt to generate an ensime configuration file as described in this tutorial:
http://jawher.net/2011/01/17/scala-development-environment-emacs-sbt-ensime/
The issue I'm having is ...
0
votes
0answers
47 views
Show all overrides using ensime (scala)
Using ensime, is there any way I can look at a function, let's say in some super class, and see all of the places that function is overridden in the corresponding subclasses? I believe that IntelliJ ...
0
votes
1answer
46 views
Ensime remote debugging
Is it possible to attach ensime debugger to a remote process? I cannot find anything relevant in the manual.
http://aemoncannon.github.com/ensime/index.html
0
votes
0answers
139 views
Add Eclipse Android library project to Scala Android project without using Eclipse
I am wanting to use the DataDroid library for my Android application project. My project is written in Scala. The DataDroid instructions read:
...you need to add the DataDroid project...in your ...
0
votes
1answer
122 views
sublime-ensime for scala not finding android packages
Ensime is not finding the android packages and gives errors such as:
object android is not a member of package <root>
I'm using sbt and sublime-ensime on OS X with Java 1.6 to try out a ...
7
votes
1answer
257 views
Connect emacs to a remote ensime server
How can I connect to an ensime server on a remote host? My netbook is a bit slow for that kind of stuff. I copied the data over and use tramp to edit the files remotely. I ran bin/server to create the ...
3
votes
1answer
307 views
Using Ensime + SBT to browse scala library
Is it possible to use Ensime and SBT to go to the definition of Scala library classes?
I know it is possible to see the definition of elements (using M-. or Control+Left-Click) and from there it's ...
6
votes
1answer
95 views
Auto-refresh ENSIME error buffer
Is there a way I can make ENSIME errors buffer (the one invoked with C-c C-v e) to automatically refresh whenever I save my Scala source file?
2
votes
1answer
207 views
ENSIME not finding the correct project definition
I'm using an Emacs 24 snapshot on Ubuntu 12.04 with Scala 2.9.2 and ensime_2.9.2-RC1-0.9.3.RC4.
Basically I did the same thing as described in ...
1
vote
1answer
390 views
When I using sublime and emacs as the development tool for scala, there are some errors occured
I use the sublime open the ensime project, the ensime server started normal.
After using it for a short time, the following errors occured.
Handling RPC: (swank:completions ...
0
votes
2answers
143 views
Disable parenthesis (paren) auto-completion in ENSIME
When I type an opening parenthesis, ENSIME automatically inserts a closing parenthesis. How do I disable this?
2
votes
2answers
403 views
Error running ensime-source-buffer-loaded-hook - OSX with ENSIME and Emacs
I get the following error when trying to start ENSIME on OSX through Emacs
Error running ensime-source-buffer-loaded-hook
I am following the instructions from the github source page
Scala Mode is ...
1
vote
1answer
273 views
Redefining keys in emacs' ENSIME scala mode
I'm trying to redefine the "M-." in the ENSIME mode so that it runs auto-complete instead of ensime-edit-definition. Which is the default binding. I have the following code in the .emacs:
(defun ...
8
votes
1answer
391 views
How can I make ensime show all compilation errors?
I'm doing Scala web development using the Play framework's scala module, and using Emacs+Ensime to edit the code. Sometimes even when Ensime shows no errors, Play will still show a compilation error ...
2
votes
1answer
301 views
ensime on mac almost working, syntax checking after save stop working
Just getting started in Scala programming. I got an environment set up using emacs, sbt, ensime according to the instructions here. ...
1
vote
1answer
231 views
Emacs Ensime-sbt not responding to enter after I try to use RUN command
I am using emacs to program in scala, now I installed ensime to be able to run SBT directly from emacs.
I use C-c-C-v-s to launch a buffer for ensime-sbt.
but when I type the run and hit enter ...
6
votes
2answers
388 views
Emacs project management for Scala
I would like to ask if any of you have any experience {and,or} could point me to a project management extension for Emacs that works well with {Scala,Ensime,SBT}. It would also be amazing if it didn't ...
2
votes
1answer
329 views
Ensime + sbt: “Android SDK not found”
I'm trying to use Ensime to work with adnroid project generated with g8 (https://github.com/philcali/android-plugin). Followed this question I added the android.jar to my .ensime file. Here is it:
...
3
votes
0answers
254 views
Ensime debug with jdb not loading project classes
I'm using ensime under an sbt project. When I run ensime-db-start in a unit test under src/test/scala/.../Myclass.scala I cannot set a breakpoint and then I immediately get a ClassNotFoundException:
...
4
votes
1answer
370 views
Dependencies with ensime using type sbt
got the following in my build.sbt:
name := "Ledger Accounting"
libraryDependencies += "junit" % "junit" % "4.8" % "test"
libraryDependencies += "org.scalatest" % "scalatest" % "1.3" % "test"
This ...
2
votes
3answers
1k views
java.io.IOException when running sbt from ensime?
I have tried ensime/sbt on mac os. First, I open the .scala file in project folder create from using sbt in command-line, then I ran ensime and it still work fine, but whenever I run ensime-sbt (c-c ...
0
votes
1answer
384 views
Ensime doesn't work with sbt + android-plugin
i created a project by using this: https://github.com/gseitz/android-sbt-project.g8
When i start ensime in emacs to edit src/main/scala/Activity.scala i have red highlights almost everywhere. First ...
3
votes
1answer
669 views
Ensime Vim .ensime file not found
I'm trying to get Ensime for Vim working, I compiled the project for ensime using sbt 'update' then 'dist', and compiled the c file, but when i try starting ensime in Vim with :Ensime it prints out ...
0
votes
2answers
1k views
Emacs, ENSIME and SBT
I'm running Emacs + ENSIME and using sbt in an emacs window (M-x term) to compile and run tests. Is there any way to click/select to jump to the failing tests? At the moment I have to scroll up a ...
1
vote
2answers
180 views
License banners for Scala when using ENSIME
I'm trying to start using ENSIME for Scala development with SBT. How should I manage license headers? I used to use Copyright Wizard in Eclipse and that seemed fine.
1
vote
1answer
281 views
Ensime doesn't show source code of downloaded libraries
I'm currently a happy user of emacs-ensime. Wholly it's a good IDE but there is an issue - I can't view scaladoc when I choose some method of a class in type inspector. I use ivy for dependency ...
2
votes
1answer
221 views
infinite loop shutting down ensime
When I run M-X ensime-disconnect I get the following forever:
string matching regex `\"((?:[^\"\\]|\\.)*)\"' expected but `^@' found
and I see this exception when I use C-c C-c
Uncaught ...
4
votes
1answer
1k views
ensime scala errors (class scala.Array not found, object scala not found)
I've installed ensime according to the README.md file, however, I get errors in the inferior-ensime-server buffer with the following:
INFO: Fatal Error: scala.tools.nsc.MissingRequirementError: ...
3
votes
3answers
2k views
How to make ensime work in windows?
I'm new to emacs and I want to use ensime in Windows.
I had a try but it doesn't work. It seems that it doesn't work because there is a *nix format file named "\ensime\bin\server.sh" .
Very appreciate ...
