C-h-e-r-r-y

Results 12 issues of C-h-e-r-r-y

Key shortcut ctrl + f do not show search intellij idea dialog. So it impossible to find text when preview is open.

Improvement

It is hard to find something in long markdown file. It would be nice if plugin show something like "table of contents" for navigation purposes. For example at top of...

Feature

For now it is impossible to generate scala classes with oneof fields. ``` '}' expected but 'o' found oneof my_value { ``` With proto like that: ``` message MyMessage {...

Let start from example: public class MyDto { @JsonFormat(shape = JsonFormat.Shape.NUMBER_INT) private LocalDate dob; } This will serialized `dob` as days since epoch. I find this very confusing because all...

# The idea Original Jackson has [\@JsonAnySetter](https://fasterxml.github.io/jackson-annotations/javadoc/2.4/com/fasterxml/jackson/annotation/JsonAnySetter.html) annotation which allow you deserializae any unknow fields into Map. Why not add this possibility for unknow columns? The setter could be `Collection`...

Consider a cofiguration: ``` org.codehaus.mojo exec-maven-plugin ${exec-maven-plugin.version} script-chmod package exec ${project.build.directory} chmod +x ${project.build.directory}/target/tomcat/bin/*.sh start-tomcat package exec target/tomcat/bin/startup.sh ``` When `exec-maven-plugin.version` is `1.1` everything works, but when it `1.5.0`, `1.4.0`...

Could you please add a possibility to execute code after phantoms instance was created? For example before open several page it is needed to perform login operation. Login should be...

Consider a code: ``` val newQuery = Query("a" -> "av") ++ Query("b" -> "bv", "c" -> "cv") println(newQuery) ``` Which prints: ``` List((a,av), (b,bv), (c,cv)) ``` I could be wrong...

Look at https://buildkite.com/docs/pipelines documentation page it does not have "next" and "previous" buttons so users have to scroll up, click menu, find current page, find next one and click. And...

I am trying to buil lzo with maven and have some issues. They may be obvious for C++ developers but not for others (like me). Here list of issues: >...