Skip to content

Latest commit

 

History

History
executable file
·
35 lines (23 loc) · 1.54 KB

File metadata and controls

executable file
·
35 lines (23 loc) · 1.54 KB

Introduction

The Multiple File Kotlin Converter IntelliJ IDEA plugin runs the native Convert Java File To Kotlin File action against a list of files, in sequence allowing bulk conversion. It includes several options for selecting files, including:

  • New-line separated list of files
  • regex matching (Currently limited to filename)
  • Line-count based filtering

The regex and line-count based options include a verification and selection step.

All conversions also include an optional step to perform an in-place renaming of the files from .java to .kt so that git/Version Control history is maintained.

How to install?

The plugin is published under the JetBrains Plugins Repository (see here) and can be installed following these simple steps:

  1. Open Settings menu (Ctrl Alt S).
  2. Access Plugins section.
  3. Click Browse repositories... button.
  4. Search for Multiple File Kotlin Converter and click Install button.

How does it work?

This plugin adds a new Convert Multiple Files To Kotlin... menu action right after Convert Java File To Kotlin File native menu (under Code menu).

When running this new action menu, the following steps are applied to each selected Java file:

  • Rename Java file with Kotlin extension
  • Commit renaming step to VCS with standard or custom commit message
  • Rename file back to Java extension

The plugin invokes the native Convert Java File To Kotlin File action on all selected Java files.