Yao

Results 20 issues of Yao

```bash $echo "this_is_a_string" | string_underscore_camelcase this_is_a_string ``` From the source code: ```bash $ echo $separator _ $ string=this_is_a_string echo "${string}" | sed -E "s/${separator}(\w)/\u\1/g" this_is_a_string ```

Traceback (most recent call last): File "F:\Anaconda2\Scripts\coursera_offline.py", line 418, in main() File "F:\Anaconda2\Scripts\coursera_offline.py", line 315, in main shortname, parsed_json = process_arguments(args) File "F:\Anaconda2\Scripts\coursera_offline.py", line 307, in process_arguments return p['shortname'], p...

See this issue https://github.com/Microsoft/TypeScript/issues/4987 and this PR https://github.com/Microsoft/TypeScript/pull/5450 But this plugin uses require to import tsconfig, which rejects comments(as standard json does not support comments). Error message: > Test suite...

I use node as well as mongo. But this plugin make I have to run js with mongo instead of running with node by pressing ctrl shift F10. Even mongo...

I try to execute the code from https://github.com/dkandalov/live-plugin/wiki/Google-auto-complete But ``` groovy.lang.MissingPropertyException: No such property: MyExtensionPointManager for class: com.intellij.codeInsight.completion.CompletionContributor at groovy.lang.MetaClassImpl.invokeStaticMissingProperty(MetaClassImpl.java:1001) at groovy.lang.MetaClassImpl.getProperty(MetaClassImpl.java:1856) at groovy.lang.MetaClassImpl.getProperty(MetaClassImpl.java:1832) at groovy.lang.MetaClassImpl.getProperty(MetaClassImpl.java:3734) at org.codehaus.groovy.runtime.callsite.ClassMetaClassGetPropertySite.getProperty(ClassMetaClassGetPropertySite.java:51) at org.codehaus.groovy.runtime.callsite.AbstractCallSite.callGetProperty(AbstractCallSite.java:296)...

Currently it is only supported in Rubymine, and we cannot use it in intellij idea even if we install the Ruby Plugin.

Builder pattern is very common to make an immutable bean object. Lombok even has an `@Builder` annotation https://projectlombok.org/features/Builder. Will this plugin support generation of all builder methods? Thank you.

enhancement

Because the error, default setting is not displayed. ``` null java.lang.NullPointerException at io.t28.json2java.idea.setting.Json2JavaConfigurable.(Json2JavaConfigurable.java:85) at io.t28.json2java.idea.setting.Json2JavaConfigurable.(Json2JavaConfigurable.java:79) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:423) at org.picocontainer.defaults.InstantiatingComponentAdapter.newInstance(InstantiatingComponentAdapter.java:193) at com.intellij.util.pico.CachingConstructorInjectionComponentAdapter.doGetComponentInstance(CachingConstructorInjectionComponentAdapter.java:103) at com.intellij.util.pico.CachingConstructorInjectionComponentAdapter.instantiateGuarded(CachingConstructorInjectionComponentAdapter.java:80)...

My sentence `‘What’s the matter, Jerry?’ called Mr Lorry.` is segmented into two parts. - `‘What’s the matter, Jerry?` - `’ called Mr Lorry.`

Code: ```java int delay = (int) Math.pow(4.0D, (double) retries) * 100; ``` Visual result: `double` is redundant.