gantsign / ansible-role-intellij

Ansible role for installing the IntelliJ IDEA IDE

Home Page:https://galaxy.ansible.com/gantsign/intellij

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Looking for correct name for "Save Actions" plugin

btomasini opened this issue · comments

I am trying to install the following plugin via this role, and am encoutering a error saying it cannot be found.

https://github.com/dubreuia/intellij-plugin-save-actions/blob/master/META-INF/plugin.xml

What is the proper name for the list of intellij plugins? I have tried

  • Save Actions
  • "Save Actions"
  • save actions
  • save_actions

@btomasini, you need to specify the plugin ID rather than the plugin name (i.e. com.dubreuia in this case); however, since the Save Actions plugin is distributed as a JAR rather than a ZIP file it's not currently working with this role. I expect to have a fix for JAR support sometime today.

Thanks for the feedback.

FYI: I find the following command useful for finding plugins:

cat ~/.IntelliJIdea2017.1/config/plugins/availables.xml | xmlstarlet sel -I -t -e plugins -m //idea-plugin -e plugin -a 'id' -v 'id' -b -a 'name' -v 'name' -b | less

For the community edition use:

cat ~/.IdeaIC2017.1/config/plugins/availables.xml | xmlstarlet sel -I -t -e plugins -m //idea-plugin -e plugin -a 'id' -v 'id' -b -a 'name' -v 'name' -b | less

@btomasini the Save Actions plugin (com.dubreuia) should work with version 2.10.1 of this role.