Home

Awesome

<p align="center"> <img src="https://github.com/simaxme/java.nvim/blob/main/images/neovim_java.png?raw=true" align="center" width="100"> </p>

java.nvim

A neovim plugin to move and rename java files.

Introduction

I am a Java developer and am loving to use neovim. Nevertheless, refactoring was the thing that always brought me back to JetBrains IDEs. Although nvim-jdtls is existing, which is able to simply rename symbols, file renames were never possible with it. For instance, tsserver-LSP has this feature. Because I really wanted to use neovim as my dailydriver and file-renames are essential, I have written this plugin.

Dependencies

Function of this plugin

In current state, this plugin is a addition to nvim-jdtls. It allows you to rename .java files and looks for any reference to the name and updates the import statements and symbol usages automaticaly. This does only work due to the use of lua-patterns and regex. I hope this plugin wil help someone with this basic feature of file refactoring.

Why have I named it java.nvim?

This can be simply answered: I want to add some features besides the refactoring of files that are helping in everyday Java use. For instance, I will try to add the ability for simple LuaSnip snippets that allow you to create a default class/interface/enum by using a simple snippet without needing to write all the same stuff again and again.

Supported platforms

Installing the plugin

The plugin can be easily installed using dusing different Plugin Managers.

Lazy

-- other lazy stuff
{
    'simaxme/java.nvim'
}
-- other lazy stuff

You will also need to setup the plugin (see Configuring the plugin)

Configuring the plugin

You can setup java.nvim with the following line:

require("java").setup()

However, there are some tweaks you can make (default configuration):

require("java").setup {
    rename = {
        enable = true, -- enable the functionality for renaming java files
        nvimtree = true, -- enable nvimtree integration
        write_and_close = false -- automatically write and close modified (previously unopened) files after refactoring a java file
    },
    snippets = {
        enable = true -- enable the functionality for java snippets
    },
    root_markers = { -- markers for detecting the package path (the package path should start *after* the marker)
        "main/java/",
        "test/java/"
    }
}

Compatibility with nvim-java

Due to the owner of the nvim-java also naming his package java there may be compatibility issues. If you are using this package, it is recommended to use the alias simaxme-java:

require("simaxme-java").setup()

All current functionalities

After configuration

Go to your nvim-tree pane and execute a simple r on a java file or a package. Magic will happen and you will not have to do anything 🙃.