eclim Changelog

What's new in eclim 2.21.0

Nov 10, 2021
  • Eclim:
  • Eclim updated to support, and now requires, Eclipse 4.21 (2021-09)
  • Fix json errors saving workspace/project settings for some setting values (eg. import exclusion patterns).
  • Some small install/uninstall improvements.
  • Java:
  • Fix code completion for vim 8.2.2489 or later.
  • Fix :JavaCorrect error for Serializable class missing serialVersionUID.
  • Xml:
  • Fix :Validate command definition for vim 8.2.3140 and later. Thanks to sideshowbarker.

New in eclim 2.6.0 (Aug 23, 2016)

  • Eclim now supports, and requires, Eclipse 4.6 (Neon).

New in eclim 2.5.0 (Aug 23, 2016)

  • Eclim now supports, and requires, Eclipse 4.5 (Mars).

New in eclim 2.4.1 (Jan 23, 2015)

  • Install:
  • Fixed unattended installation.
  • Eclim:
  • Updated the search behavior across all eclim's supported languages to now use vim's quickfix list instead of the location list, and to only do so if there is more than one result.
  • Updated eclim's sign support for quickfix results to now be disabled by default.
  • Updated eclim's signs to use more unique ids to support multiple different sign types on a single line and to avoid clashing with other plugins that may be setting signs on the same lines as eclim.
  • Project:
  • Added a :ProjectRun command to invoke your project's eclipse run configuration.
  • Added :ProjectImportDiscover to bulk import projects from a common parent directory.
  • Java:
  • Added support for java debugging.
  • Added a :JavaNew command to create new classes, interfaces, etc in your project.
  • Added ability to configure :JavaImpl to insert methods at the current cursor position.
  • Updated :JavaSearch to support sorting the results by relative path.
  • Groovy:
  • Added support for groovy validation and code completion.
  • Python:
  • Fixed eclim's python support to work against the pydev 3.9.1
  • Scala:
  • Scala support has been re-enabled now that ScalaIDE 4.0.0 for Luna has been released.

New in eclim 2.4.0 (Sep 19, 2014)

  • Eclim:
  • Eclim now supports, and requires, Eclipse Luna
  • :EclimSettings renamed to :WorkspaceSettings to better reflect what is being edited.
  • Added :VimSettings command to make viewing/editing of eclim's vim client settings easier.
  • All eclim make based commands (:Ant, :Mvn, etc.) will now use dispatch if available. If you would like to disable this behavior, add the following to your vimrc:
  • let g:EclimMakeDispatchEnabled = 0
  • Lot of bugs have also been fixed.
  • Scala:
  • Scala support is disabled in this release. I tried waiting for a final release of ScalaIDE 4.0.0 for Luna, but I don't want to hold up the rest of eclim any longer. If you want to use eclim's scala support, you'll need to install the ScalaIDE 4.0.0 milestone and build eclim from the master git branch.

New in eclim 1.7.19 (May 7, 2014)

  • Indigo release which includes most of the changes from 2.3.3 and 2.3.4, excluding the new pydev support. This will most likely be the final eclim release for indigo.

New in eclim 2.3.4 (Apr 16, 2014)

  • Project:
  • Fixed the projects command result on Windows.

New in eclim 2.3.3 (Apr 16, 2014)

  • Installer:
  • Fixed running of the installer with Java 8.
  • Eclimd:
  • Starting eclimd in the background is now done using the -b flag instead of passing a start argument.
  • Eclimd debug logging can now be enabled at startup using the --debug flag.
  • Ant:
  • Fixed ant target completion for newer ant versions (those that require java 5).
  • C/C++:
  • Fixed adding of includes etc. in the C++ sections of :CProjectConfig.
  • Fixed searching to include macro results.
  • TODO/FIXME markers are now ignored by validation.
  • Html:
  • Fixed indentation after unclosed and tags.
  • Java:
  • Fixed possible infinite loop when adding imports using :JavaImport.
  • Fixed an edge case which caused an additional empty line to be added between imports that should be grouped together when using :JavaImport.
  • Fixed :Java command if the main class has no package declaration.
  • Fixed issue with large portions of code being re-formatted when applying a correction suggestion.
  • TODO/FIXME markers are now ignored by validation.
  • Some of the eclipse java code completion settings are now available via :ProjectSettings.
  • Javascript:
  • Let tern supersede eclim's limited javascript completion.
  • Maven/Ivy:
  • Removed dependency searching since the search provider no longer exists.
  • Python:
  • Eclim's python support been re-written to use pydev instead of rope.
  • Scala:
  • Disabled use of temp files which could cause some validation errors.
  • Added support for automated imports.
  • Xml:
  • Fixed validation of xml files with no dtd/schema to not raise errors on missing dtd for non-english users.

New in eclim 2.3.2 (Apr 16, 2014)

  • Installer:
  • Fixed extraction of scala vim files when installing scala support.
  • Php:
  • Fixed completion of php namespaces.

New in eclim 2.3.1 (Jul 29, 2013)

  • Installer:
  • Fixed dependencies to point at the Kepler update site.

New in eclim 2.3.0 / 1.7.17 (Jul 22, 2013)

  • Java:
  • NewJarEntry now accepts up to 3 arguments allowing you to create the jar entry with the path to the jar, path to the source, and the path to the javadocs.
  • On javadoc search, all results, including results found in jar files, will be fully translated to usable urls to be opened by vim instead of sending jar results back to eclipse to let it open them. With this change your chosen brower on the vim side will always be used.
  • Fix for import grouping by package on Kepler.
  • Php:
  • Reminder: The format of the h2 database used for php searching and code completion has changed in Kepler which may result in searching / code completion not returning any results, both in eclim and in the standard eclipse php editor. To fix this you'll need to stop eclipse, remove the old index, and then restart:
  • $ rm -r /.metadata/.plugins/org.eclipse.dltk.core.index.sql.h2/
  • Scala:
  • Updated to require 3.0.1 of the Scala IDE which now supports Kepler (for eclim 2.3.0 only). Since this version of the Scala IDE seems to only support Scala 2.10.x now, the option to install 2.9.x version has been removed, however the indigo release of eclim (1.7.17) still supports the Scala 2.9.x version of Scala IDE 3.0.0.
  • Xml:
  • XmlFormat now uses the DOM3 APIs to improve the formatted result, honoring your textwidth and indent settings.

New in eclim 2.2.7 / 1.7.16 (Jul 15, 2013)

  • Java:
  • Fix for some completions on Kepler.
  • Fix for rare case where an invalid classpath entry could result in the .classpath file reverted to the eclipse default.
  • :JavaCallHierarchy added to show the caller or callee hierarchy of a method.
  • Php:
  • Warning
  • The format of the h2 database used for php searching and code completion has changed in Kepler which may result in searching / code completion not returning any results, both in eclim and in the standard eclipse php editor. To fix this you'll need to stop eclipse, remove the old index, and then restart:
  • $ rm -r /.metadata/.plugins/org.eclipse.dltk.core.index.sql.h2/
  • Ruby:
  • Fixed the inserted completion text for some ruby libraries.
  • Scala:
  • The graphical installer now includes a compiled eclim sdt bundle for both scala 2.9.x and 2.10.x for which one will be chosen for you if you already have the scala-ide installed, otherwise you can pick one and the appropriate version of the scala-ide will be installed for you.
  • Vimplugin:
  • The option to force focusing of gvim with a simulated click is now disabled by default, but when enabled, it should be less likely to have unintended side affects.
  • Cygwin:
  • Performance optimization for user's with many projects.
  • Installer:
  • The installer will now properly shutdown eclimd instances registered using the old non-json format.
  • Docs:
  • Expanded the developer docs to include docs on creating new commands along with some of the basics for adding new eclim plugins.

New in eclim 2.2.6 / 1.7.14 (May 20, 2013)

  • Bug Fixes:
  • Fixed eclimd to prevent incorrect addition of -d32 on 64bit systems, which prevents eclimd from starting.
  • Fix potential conflicts between syntastic validation vs eclim validation (syntastic validation will be diabled if eclim validation is available for the current file type).
  • Many more fixes.
  • Android:
  • Updated for ADT 22.0.0
  • C/C++:
  • :CCallHierarchy now support showing callee tree.
  • Java:
  • :JavaImpl now supports anonymous inner classes and will also properly handle suggesting methods from a nested superclass.
  • Php:
  • Eclim will no longer run php files through html validation by default (see the Php Validation doc for settings to enable html validation).
  • Scala:
  • Scala support updated for Scala IDE 3.0.0.
  • Scala now supported on both versions of eclim (Juno and Indigo).

New in eclim 2.2.5 / 1.7.13 (Nov 26, 2012)

  • Eclim:
  • 1.7.13 and above will now support Eclipse 3.8 as well as 3.7.
  • Fix :ProjectGrep and :ProjectTodo to search in all of the project's links as well.
  • Other minor bug fixes.

New in eclim 2.2.4 / 1.7.12 (Nov 26, 2012)

  • Eclim:
  • Updated :ProjectTree and :ProjectTab to support an arbitrary directory as an argument, allowing you to use the command for project's not managed by eclipse/eclim. :TreeTab has been removed since the update to :ProjectTab makes it redundant.
  • Creation of projects in nested directories in the eclipse workspace (vs at the root of the workspace) is now properly supported through eclim.
  • C/C++:
  • Fix placement of some error markers.
  • Php:
  • Some indentation fixes

New in eclim 2.2.3 / 1.7.11 (Oct 22, 2012)

  • Eclim:
  • Fixes execution of eclim commands from vim on Windows when using the external nailgun client (vs the python client).

New in eclim 2.2.2 (Oct 8, 2012)

  • Eclimd:
  • Updated eclimd script for Linux/OSX to supply reasonable defaults for heap and perm gen space if not already set by ~/.eclimrc.
  • C/C++:
  • Fixed C++ project creation to auto add the required C nature.
  • Fixed C/C++ issues introduced by the eclipse 4.2.1 release (project create/refresh and call hierarchy).
  • Java:
  • JavaImportSort, :JavaImportClean, and :JavaImportMissing all removed in favor of a new command which performs the functionality of all three: :JavaImportOrganize
  • The vim option g:EclimJavaImportExclude has been replaced with the eclim setting org.eclim.java.import.exclude.
  • The vim option g:EclimJavaImportPackageSeparationLevel has been replaced with the eclim setting org.eclim.java.import.package_separation_level.
  • g:EclimJavaBeanInsertIndexed vim variable removed in favor of suffixing :JavaGetSet methods with '!'.
  • JavaCorrect, :JavaImpl, :JavaDelegate, :JavaConstructor, and :JUnitImpl all now perform their code manipulations using eclipse operations.
  • Initial support added for running :JavaSearch commands from source file results (library source files) not in a project.
  • g:EclimJavaCheckstyleOnSave replaced with the eclim setting org.eclim.java.checkstyle.onvalidate.
  • g:EclimJavaSrcValidate renamed to g:EclimJavaValidate.
  • JUnitExecute replaced with a new and improved :JUnit command.
  • Added the command :JUnitFindTest to open the corresponding test for the current file.
  • Removed :Javac command since eclipse's continuous incremental builds typically make the :Javac call a no op, and in cases where you need to induce compilation, :ProjectBuild does so in a language agnostic way.
  • Added :JavaMove command to move a java source file from one package to another.
  • Added :JavaDocPreview to display the javadoc of the element under the cursor in vim's preview window.

New in eclim 1.7.9 (Sep 17, 2012)

  • Add support for scala code completion, code validation, and element definition searches.

New in eclim 2.2.1 Beta (Sep 3, 2012)

  • Documentation:
  • Redesigned the eclim website using the sphinx bootstrap theme.
  • Reorganized many of the docs to consolidate similar features to hopefully make them easier to find and make the docs less sprawling.
  • Improved the translation of the docs to vim help files.
  • Android:
  • Eclim now has support for creating android projects.
  • Java:
  • Fixed searching for JDK classes on OSX.
  • Added support for searching for inner classes and their methods.
  • Fixed remaining tab vs spaces indenting related issues with code added via eclipse.
  • Vimplugin:
  • Fixed disabling of conflicting Eclipse keybindings on Juno while the embedded vim has focus (fixes usage of Ctrl+V for blockwise visual selections).

New in eclim 1.7.5 Beta (Jun 6, 2012)

  • Installer:
  • Added uninstall support to the eclim installer.
  • Updated the installer to fully embrace eclipse’s provisioning framework (p2).
  • Common:
  • Added :ProjectTreeToggle.
  • Vimplugin:
  • Fixed key binding conflict handling to not inadvertently switch your key binding scheme back to the default scheme.
  • Java:
  • Added support for importing the necessary type during code completion.
  • Improved location of a project’s main class for the :Java command, when not explicitly set.

New in eclim 1.7.4 Beta (Jun 6, 2012)

  • Bug Fixes:
  • Fixed possible NPE saving eclim settings.
  • Several other small bug fixes.
  • C/C++:
  • Fixed code completion by disabling the use of temp files.
  • Java:
  • Fixed :Java on windows as well as handling of stdin for ant 1.8.2+.

New in eclim 1.7.3 Beta (Jun 6, 2012)

  • Bug Fixes:
  • Lots of various bug fixes.
  • Common:
  • Added :ProjectBuild to build the current or supplied project.
  • Updated :ProjectProblems to support optional bang (:ProjectProblems!) to only show project errors.
  • Updating eclipse’s local history when writing in vim is now only enabled by default when gvim is opened from the eclipse gui.
  • C/C++:
  • Fixed project creation issue encountered on some systems.
  • Java:
  • Added project settings for specifying default jvm args for :Java and default args for :Javac.
  • Code inserted by :JavaConstructor, :JavaGetSet, :JavaImpl, :JavaDelegate, and :JUnitImpl is now formatted according to the eclipse code formatter settings configured from the eclipse gui.
  • Maven:
  • Now when saving your pom.xml file your .classpath will be auto updated with the dependencies found in your pom.xml.
  • Php:
  • Now handles completion from within php short tags.

New in eclim 1.7.2 Beta (Jun 6, 2012)

  • Bug Fixes:
  • Various small bug fixes.
  • Installer:
  • Fixed deadlock on the vim install dir pane for java 7.
  • Eclipse:
  • Disabled listening for change events on embedded gvim. Should fix most causes of gvim crashing.
  • Other improvements for embedded gvim support.
  • Eclimd:
  • Improved OSX detection.
  • Fix for passing jvm args to java when supplied as args to eclimd script.
  • Java:
  • Fix passing of dash prefixed :Java args (ex. -p) to the class to be run.
  • Php:
  • Improved completion of magic properties.
  • Support new php 5.3 version in pdt.

New in eclim 1.7.1 Beta (Jul 4, 2011)

  • Bug Fixes:
  • Fixed org.eclipse.swt.SWTError: Not implemented [multiple displays] error when starting the eclipse gui after running eclimd.
  • Eclipse:
  • Enable vim embedding on Solaris, AIX, and HP-UX versions of eclipse.

New in eclim 1.7.0 (Jul 4, 2011)

  • Bug Fixes:
  • Bug fixes for eclipse 3.7 (Indigo) compatibility.
  • Other bug fixes.
  • Eclipse:
  • eclim now requires the latest version of eclipse (Indigo, 3.7).

New in eclim 1.6.3 (Jul 4, 2011)

  • Bug Fixes:
  • Fixed bug where one or more closed projects would prevent working with open projects.
  • Other small bug fixes.
  • Installer:
  • Prevent possible OutOfMemoryError when invoking eclipse to install plugin dependencies by setting a larger heap space.
  • Java:
  • Added :JavaClasspath to echo the project’s current classpath.

New in eclim 1.6.2 (Jul 4, 2011)

  • Bug Fixes:
  • Fixed to use %USERPROFILE% on windows to retrieve the user home (fixes several possible issues including “Unable to determine your eclipse workspace”).
  • Various other bug fixes.
  • Common:
  • Added rudimentary auto generated menu items for gvim (can be disabled via g:EclimMenus).
  • Added support for displaying project info vim’s status line (contributed by Brendan W. McAdams).
  • C/C++
  • Updated context search to greatly improve performance in some cases.
  • Python:
  • Updated all embedded python logic to be compatible with python 2.6 and higher.
  • Note
  • Support for vim embedded python 2.5 or less no longer supported.
  • Other:
  • All relative commands (:SplitRelative, :EditRelative, etc), along with :Split and :Tabnew broken out from eclim to http://github.com/ervandew/relative.
  • Archive viewing support broken out from eclim to http://github.com/ervandew/archive.
  • Maximize/Minimize vim window support broken out from eclim to http://github.com/ervandew/maximize.
  • Sgml (html, xml, etc.) end tag completion broken out from eclim to http://github.com/ervandew/sgmlendtag.
  • Vcs support broken out from eclim to http://github.com/ervandew/vcs.
  • Taglist support broken out from eclim to http://github.com/ervandew/taglisttoo.
  • Regex testing support (:JavaRegex, :PythonRegex) broken out from eclim to http://github.com/ervandew/regex.
  • Vim script help lookup along with user defined variable/command/function definition/references lookup support broken out from eclim to http://github.com/ervandew/lookup.

New in eclim 1.6.1 (Jul 4, 2011)

  • Bug Fixes:
  • Fix for :ProjectProblems command when any filters have been set from the eclipse gui.
  • Merged in JRuby’s improvements to nailgun’s build scripts to increase compatibility with more platforms.
  • Updated the installer and eclimd to not use the eclipse binary and instead run the launcher jar directly. Removes the need to locate the binary which varies by platform and some eclipse distributions, and fixes issues with options located in the eclipse.ini that are only supported by the IDE app.
  • Various other bug fixes.
  • eclim:
  • Add workspace locking to prevent colliding with other running eclipse instances on the same workspace.
  • Common:
  • Added a :TreeTab command like :ProjectTab but for any arbitrary directory.
  • Added a :BuffersToggle command to toggle whether the eclim buffers windows is open or closed.
  • Refactored Vcs support, including a new :VcsLog layout.
  • Note
  • Support for cvs and subversion have been discontinued.
  • Python:
  • Upgraded included rope version to 0.9.3.
  • Improved the detection of the completion entries types.
  • Php:
  • Fixed validating php files in eclipse 3.6.1.

New in eclim 1.6.0 (Jul 4, 2011)

  • Bug Fixes:
  • Several bug fixes for eclipse 3.6 (Helios) compatibility.
  • Various other bug fixes.
  • Eclipse:
  • eclim now requires the latest version of eclipse (Helios, 3.6).
  • Common:
  • :ProjectTree now supports eclipse resource links.

New in eclim 1.5.8 (Jul 4, 2011)

  • Bug Fixes:
  • Fixed possible NPE during installation when one or more eclim dependent eclipse features needs to be upgraded.
  • Fixed code completion and search for php as well as search for ruby, all of which were all affected by dltk module caching introduced in galileo SR2.

New in eclim 1.5.7 (Jul 4, 2011)

  • Bug Fixes:
  • Fixed launching of MacVim from the eclipse gui.
  • Various other bug fixes.
  • Installer:
  • The installer has undergone some extensive changes to make it more reliable and to better support various environments.

New in eclim 1.5.6 (Jul 4, 2011)

  • Bug Fixes:
  • Avoid possible gvim crashes when launched from the eclipse gui by disabling documentListen events if the current gvim version doesn’t include the patch which resolves the crash.
  • Various bug fixes.
  • Common:
  • Added a :ProjectTab command providing the ability to work on one or more projects each with a dedicated vim tab.
  • Added a :Tcd command to mimic :lcd but local to the tab instead of the window.
  • Added branch info to the footer of the project tree when using mercurial or git.
  • Install:
  • Added support for automated installs.
  • Eclim:
  • Added initial support for using eclim via vim in cygwin.
  • The eclimd log file has been moved to: /.metadata/.log.eclimd
  • Added support for specifying that gvim should be refocused after executing an eclipse keybinding from vim using eclim#vimplugin#FeedKeys.
  • Moved user local eclim resources (templates, taglist scripts, etc) from ${vimfiles}/eclim/resources to ~/.eclim/resources.

New in eclim 1.5.5 (Jul 4, 2011)

  • Bug Fixes:
  • Fixed error using: ProjectTree if the project name has non-word characters in it.
  • Install:
  • Fixed issue downloading content.jar from eclipse update site.