Coder Social home page Coder Social logo

qq47008888 / intellij-plugin-save-actions Goto Github PK

View Code? Open in Web Editor NEW

This project forked from dubreuia/intellij-plugin-save-actions

0.0 1.0 0.0 843 KB

Supports configurable, Eclipse like, save actions, including "organize imports", "reformat code" and "rearrange code".

License: MIT License

Shell 0.25% Java 99.75%

intellij-plugin-save-actions's Introduction

Save Actions Plugin

JetBrains Plugin JetBrains Supported Travis CI Build Status AppVeyor Build Status Codecov Code Coverage Maintainability

Supports configurable, Eclipse like, save actions, including "optimize imports", "reformat code", "rearrange code", "compile file" and some quick fixes like "add / remove 'this' qualifier", etc. The plugin executes the configured actions when the file is synchronised (or saved) on disk.

Using the save actions plugin makes your code cleaner and more uniform across your code base by enforcing your code style and code rules every time you save. The settings file (see files location) can be shared in your development team so that every developer has the same configuration.

The code style applied by the save actions plugin is the one configured your settings at "File > Settings > Editor > Code Style". For some languages, custom formatter may also be triggered by the save actions plugin. For example for Dart developers, enable "Use the dartfmt tool when formatting the whole file" option in "File > Settings > Editor > Code Style > Dart > Dartfmt".

Thank you to JetBrains that supports our plugin: they provide an open-source license to us, necessary to build, test and deploy this plugin. Check out their products at https://www.jetbrains.com.

Content

Features

All JetBrains products

  • Optimize imports
  • Run on file save, shortcut, batch (or a combination)
  • Run on multiple files by choosing a scope
  • Reformat code (whole file or only changed text)
  • Rearrange code (reorder methods, fields, etc.)
  • Include / exclude files with regex support
  • Works on any file type (Java, Python, XML, etc.)
  • Uses a settings file per project you can commit (see Files location)
  • Available keymaps and actions for activation (see Keymap and actions)

Save actions plugin settings page

Java IDE products

Works in JetBrains IDE with Java support, like Intellij IDEA and AndroidStudio.

Save actions plugin settings page for Java

Compatibility

Built with IntelliJ IDEA IC-2016.3, JDK 1.8, those are the currently supported products, and is not expected to work in other products:

  • Intellij IDEA (ultimate and community)
  • PyCharm (professional and community)
  • PHPStorm
  • AndroidStudio
  • WebStorm
  • RubyMine
  • CLion

See issue #18 for a beta packaging that you can try in other products.

Installation

IDE (recommended)

Install it from your IDE (Intellij IDEA, PyCharm, etc.):

  • "File > Settings > Plugins > Browse repositories... > Search 'Save Actions' > Category 'Code tools'"

JetBrains plugin repository

All versions of the plugin are available from the JetBrains plugin repository. You can download the jar and add it to your IDE (you won't get updates thought):

  • "File > Settings > Plugins > Install plugin from disk..."

Configuration

The configurations are located in "File > Settings > Other Settings > Save Actions".

Activation

You can quickly toggle the plugin activation by using the "Enable Save Action" action. Use "CTRL + SHIFT + A" then search for it. It will also show if it is currently activated or not.

Name Description
Activate save actions on file save Enable / disable the plugin on file save. Before saving each file, it will perform the configured actions below
Activate save actions on shortcut Enable / disable the plugin on shortcut, by default "CTRL + SHIFT + S" (configured in "File > Keymaps > Main menu > Code > Save Actions")
Activate save actions on batch Enable / disable the plugin on batch, by using "Code > Save Actions > Execute on multiple files"
No action if compile errors Enable / disable no action if there are compile errors. Applied to each file individually

Global

Name Description
Optimize imports Enable / disable import organization (configured in "File > Settings > Code Style > Java > Imports")
Reformat file Enable / disable formatting (configured in "File > Settings > Code Style"). See "Reformat only changed code" for more options
Reformat only changed lines Enable / disable formatting for only changed lines, which will work only if a VCS is configured
Rearrange fields and methods Enable / disable re-ordering of fields and methods (configured in "File > Settings > Code Style > Java > Arrangement")

Build

Name Description
Compile file Enable / disable compiling of the modified file. The compiler might compile other files as well. Warning: this option triggers one build action for each file, use sparingly (see #128)

File

Name Description
File path inclusions Add / remove file path inclusions (by default, everything included). The Java regular expressions match the whole file name from the project root. Include only Java files: .*\.java.
File path exclusions Add / remove file path exclusions to ignore files (overrides inclusions). The Java regular expressions match the whole file name from the project root. Exclude 'Main.java' only in root folder: Main\.java. Exclude file 'Foo.java' only in folder 'src': src/Foo\.java. Exclude all xml files in any folder: .*/.*\.xml
Use external Eclipse configuration Add external configuration file ".epf" to read settings from. This will update the current settings and use only the ".epf" file content. Use "reset" button to remove

Java fixes

If a quick fix adds something that is removed by another quick fix, the removal wins.

Name Description
Add final modifier to field The field private int field = 0 becomes private final int field = 0
Add final modifier to local variable or parameter The local variable int variable = 0 becomes final int variable = 0
Add static modifier to methods The method private void method() becomes private static void method() if the content does not references instance fields
Add this to field access The access to instance field field = 0 becomes this.field = 0
Add this to method access The access to instance method method() becomes this.method()
Add class qualifier to static member access The access to class field FIELD = 0 becomes Class.FIELD for a class named Class. Exclusive with "Add class qualifier to static member access outside declaring class only".
Add class qualifier to static member access outside declaring class only The access to class field FIELD = 0 becomes Class.FIELD for a class named class, but only if the static member is outside declaring class. Exclusive with "Add class qualifier to static member access".
Add missing @Override annotations The method void method() becomes @Override void method() if it overrides a method from the parent class
Add blocks to if/while/for statements The statement if (true) return false becomes if (true) { return false; } (a block), also working for for and while statements
Add missing serialVersionUID field for Serializable classes The class class Class implements Serializable will get a new field private static final long serialVersionUID with generated serial version uid
Remove unnecessary this to field and method The access to instance field this.field = 0 becomes field = 0, also working for methods
Remove final from private method The method private final void method() becomes private void method()
Remove unnecessary final to local variable or parameter The local variable int final variable = 0 becomes int variable = 0
Remove explicit generic type for diamond The list creation List<String> list = new ArrayList<String>() becomes List<String> list = new ArrayList<>()
Remove unused suppress warning annotation The annotation @SuppressWarning will be removed if it is unused (warning: "unchecked" doesn't work properly see #87)
Remove unnecessary semicolon The statement int variable = 0;; becomes int variable = 0;
Change visibility of field or method to lower access The field public int field = 0 becomes private int field = 0 if it is not used outside class, also working for methods

Actions

Save actions are grouped under the menu "Code > Save Actions". Remember that any action is available in the action menu "CTRL + SHIFT + A". You can associate a keymap to any action in "Settings > Keymap > Search 'save actions'".

  • Enable Save Actions (default: not binded) will activate or deactivate the plugin by changing the configuration
  • Execute Save Actions on shortcut (default: "CTRL + SHIFT + S") will trigger the plugin manually, only if the configuration allows shortcuts (see activation section, the "Activate save actions on shortcut" needs to be enabled)
  • Execute Save Actions on multiple files (default: not binded) will show a popup to select the files (or a scope) on which to trigger the plugin

Eclipse support

The save-actions plugin supports Eclipse configuration .epf files (Java IDE only). You can specify a path to an Eclipse configuration file in the "Eclipse support" settings section to import it. The plugin will load the content of the file in the plugin configuration, and disable the plugin configuration options (the checkbox will be grayed out). Use the "reset" button to remove the import.

The plugin will stay in sync with your Eclipse configuration file. Not every features are present on either side, but the ones that are in common are supported.

You can find an example of an Eclipse configuration .epf file in the test resources.

# @title Save Actions
# @description Save Actions
# @task_type LASTMOD
file_export_version=3.0
/instance/org.eclipse.jdt.ui/editor_save_participant_org.eclipse.jdt.ui.postsavelistener.cleanup=true
/instance/org.eclipse.jdt.ui/sp_cleanup.format_source_code=true
/instance/org.eclipse.jdt.ui/sp_cleanup.format_source_code_changes_only=false
/instance/org.eclipse.jdt.ui/sp_cleanup.organize_imports=true
/instance/org.eclipse.jdt.ui/sp_cleanup.remove_trailing_whitespaces=true
...

Files location

  • idea.log: The log file the save actions plugin writes in. It contains debug information, prefixed with com.dubreuia.SaveActionManager. If you are using default locations, it would be in ~/.IntelliJIdeaVERSION/system/log/idea.log.
  • saveactions_settings.xml: The settings file is saved by project in the .idea folder. That file can be committed in git thus shared in your development team. If you are using the default locations, it would be in ~/IdeaProjects/PROJECT_NAME/.idea/saveactions_settings.xml

Contributors

Big thanks to all the contributors submitting issues, testing, and especially submitting pull requests.

See contributors graph ♥️

Contributing

See CONTRIBUTING.md.

JetBrains plugin page

The plugin is in the JetBrains plugin repository, please take the time to rate it!

Issues

The plugin does not work? You want more features? You can ask me on twitter or create an issue on github.

Licence

MIT License

intellij-plugin-save-actions's People

Contributors

dubreuia avatar markiewb avatar rw00 avatar marcosbento avatar krasa avatar wisajkin avatar zhujk avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.