AdvancedExpressionFolding
                                
                                
                                
                                    AdvancedExpressionFolding copied to clipboard
                            
                            
                            
                        demo-class: https://github.com/yandex-qatools/postgresql-embedded/blob/master/src/main/java/de/flapdoodle/embed/process/store/CachedPostgresArtifactStore.java#L48  
In the same way as java.util collection classes are shown. E.g. ```java Set set = HashSet.of("A"); set = set.add("B"); ``` Would be shown ```java Set set = HashSet.of("A"); set +=...
After some thought with issue #72 , I wonder if there is a better solution that would fit every code instance of a direct array access. Instead of folding into...
Would be nice if string concatentation folding respected newlines, i.e. "abc\n" + "def" or "abc" + "\ndef" would not get folded into one line. Would also like to see it...
When somebody uses a string literal to hold ASCII art (e.g. Checkstyle), it'd be nice to see it as it would actually be printed by folding escaped backslashes '\\' to...
I noted that you are trying to use ligatures an mathematic notations in folding. Looks like this might be useful for you: the [Fortress]https://en.wikipedia.org/wiki/Fortress_(programming_language)) developed in Sun labs like a...
For example: - fold `@Nullable Foo` to `Foo?` - fold `@NotNull Foo` to `Foo!` - fold `@NotNull Map` to `Map!` In addition to the Jetbrains annotations, support all nullability annotations...
Would be great to hide intermediate quotes and replace line breaks with real ones E.g. a bit of json split across multiple lines like this: "{\n" + "\"testTextProp1\": \"textProp1\",\n" +...