ConvertYamlAndProperties icon indicating copy to clipboard operation
ConvertYamlAndProperties copied to clipboard

IntelliJ IDEA plugin

Results 10 ConvertYamlAndProperties issues
Sort by recently updated
recently updated
newest added

For example ```yaml some-property: ``` becomes ```properties some-property=null ``` Expected output ```properties some-property= ```

In https://github.com/chencn/ConvertYamlAndProperties/blob/master/src/main/java/com/github/chencn/yamlandprops/consts/Constant.java the suffix for Filenames seems to be hardcoded, can you provide a way to configure it or choose between .yml and .yaml ?

举个例子,es没有设置密码,是空白, 但是转换的时候直接设置为了null,这个还是差别的

Hi plugin installed on Intellij Idea ultimate 2021.1. convert option not showing when I right click on application.yaml file (even I renamed it to application.yml but no progress) ![image](https://user-images.githubusercontent.com/5110957/121994963-73c80980-cdbb-11eb-967b-078bf42646b8.png)

Hello, do you think of supporting for comments?

Property value "000000" converted to "0" during converting

Hello, I noticed that properties for arrays such as: ``` property.retryExceptions: - org.springframework.web.client.HttpServerErrorException - java.io.IOException ``` becomes this: ``` propery.retryExceptions=[org.springframework.web.client.HttpServerErrorException, java.io.IOException] ``` Instead of. ``` propery.retryExceptions[0]=org.springframework.web.client.HttpServerErrorException propery.retryExceptions[1]=java.io.IOException ``` May I...

``` com.intellij.diagnostic.PluginException: `ActionUpdateThread.OLD_EDT` is deprecated and going to be removed soon. 'com.github.chencn.yamlandprops.ConvertAction' must override `getActionUpdateThread()` and chose EDT or BGT. See ActionUpdateThread javadoc. [Plugin: com.github.chencn.yamlandprops] at com.intellij.diagnostic.PluginProblemReporterImpl.createPluginExceptionByClass(PluginProblemReporterImpl.java:23) at com.intellij.diagnostic.PluginException.createByClass(PluginException.java:90) at...