Questions tagged [eclim]

The primary goal of eclim is to bring Eclipse functionality to the Vim editor. The initial goal was to provide Eclipse’s java functionality in vim, but support for various other languages (c/c++, php, python, ruby, css, html, xml, etc.) have been added and several more are planned.

Eclim is less of an application and more of an integration of two great projects. The first, Vim, is arguably one of the best text editors in existence. The second, Eclipse, provides many great tools for development in various languages.

Each provides many features that can increase developer productivity, but both still leave something to be desired. Vim lacks native Java support and many of the advanced features available in Eclipse. Eclipse, on the other hand, still requires the use of the mouse for many things, and when compared to Vim, provides a less than ideal interface for editing text.

102 questions
0
votes
0 answers

spacemacs custom autocomplete java

I have set up and am using Spacemacs with Eclim for enterprise Java development, but am looking for a way to set up a custom autocomplete rule so that (like in many IDEs), typing sout and hitting tab will autocomplete & expand to…
CharStar
  • 427
  • 1
  • 6
  • 24
0
votes
1 answer

Eclim command not found

I already tried looking for my question but I didn't find anything on it. It went ahead and installed eclim so I could do Java development in Vim on Mac. Everything seems to work for the most part. I ran :PingEclim and :EclimValidate and there are…
0
votes
2 answers

Which version of Java supports the -command option?

I'm attempting to use spacemacs, elipse and eclimd for editing with autocompletion. However, eclimd is attempting to start the java server with the -command ping option. My version of Java does not support that option. I have been unable to find…
David Prentiss
  • 548
  • 1
  • 6
  • 16
0
votes
1 answer

vim eclim slow scroll method/properties list

I like to use eclim with vim and auto-completition function, but i have a small question. When i press ^x^u then i see the list of methods, when im scrolling it with ^n , it's scrolling slow, but if i scroll with cursor buttons (Up,Down) it scroll…
RusAlex
  • 8,245
  • 6
  • 36
  • 44
0
votes
1 answer

eclipse + eclim + android support library

I have an android gradle project which I compile from the command line. I am using eclipse + eclim to have autocompletion and source code validation. I was an unable to get code completion to work by importing the project as an gradle project into…
rex123
  • 371
  • 3
  • 16
0
votes
1 answer

How to add a .class file folder to the classpath in eclim?

How do I add a folder with .class files to the classpath to eclim? I've tried the options in the eclim official site but none of them works.
albusshin
  • 3,930
  • 3
  • 29
  • 57
0
votes
1 answer

Using java classes in package (vim + eclim)

When you create new java class with vim, save it and leave it open on seperate vim instance, apparently you can't use that class untill that vim instance with opened class is closed. Update: Or not... Tried to replicate issue but now it just…
0
votes
1 answer

I can't update Eclipse 3.5 up to 3.6. If I install 3.6 over it, will I retain my plugins?

When I go to Help->Check for Updates in Eclipse, it checks all the repositories and says "Nothing to update", but my Eclipse version is 3.5.2.R35... I am trying to install the eclim plugin and that requires Eclipse 3.6.x. If I install Eclipse 3.6…
mindthief
  • 12,755
  • 14
  • 57
  • 61
0
votes
1 answer

ac-emacs-eclim-source not found

I am trying to setup emacs ide to use it with Java. I followed all the installation steps in emacs-eclim repository and I can't setup the auto-completion mode. If I copy the code that the installation manual says: ;; regular auto-complete…
SteelHern
  • 1
  • 1
0
votes
1 answer

Eclim executing first save of code

I'm having a bit of trouble with eclim. Everything works perfectly fine but when I try :Java, it does not run the current state that my code is in. The first time I ran my code it was a simple hello world program to check if eclim was working. Now…
user2272440
  • 31
  • 1
  • 6
0
votes
1 answer

Vim exec command with input() and nested command

I would like to create a vim command that is waiting for an input THEN that will execute ':cw' automatically after the first command. Here is what I try: noremap :exec ":ProjectGrep /".input('Search: ')"/ src/**":cw But the ':cw' does not…
Schminitz
  • 314
  • 1
  • 2
  • 13
0
votes
1 answer

Use eclim completion on Tab

Is it possible to use eclims completion on TAB? Right now I managed to use TAB when there is a . with let g:SuperTabDefaultCompletionType = 'context'. But I would like to let eclim take over the whole completion at all times.
TomTom
  • 2,820
  • 4
  • 28
  • 46
0
votes
1 answer

autocmd for running Eclim's :JavaImportOrganize

I am trying to set up an autocmd for running the Eclim command :JavaImportOrganize and :syntax on each time I save a java file. au BufWritePost {*.java} silent :JavaImportOrganize :syntax on Which (expectedly) produces an error. I have tried to…
Sebastian N
  • 759
  • 7
  • 13
0
votes
1 answer

Eclim commands in gvim close gvim, but The same commands work with vim in a terminal

My problem is exactly as it sounds. For instance, if I type "PingEclim", gvim closes. On the other hand, the same commands work fine in a terminal. Why is this? GVim-7.4 Eclim-2.4.0
rationalcoder
  • 1,587
  • 1
  • 15
  • 29
0
votes
1 answer

Using eclim with cygwin's vim

Fellow Eclim fans, I have been relegated to Windows, with cygwin as my only memory of a real operating system. Windows 7 is admittedly better than its predecessors, but I'm a pretty die-hard *nix fan. Anyway, I'm stuck. If anyone has any ideas,…