AdvancedExpressionFolding icon indicating copy to clipboard operation
AdvancedExpressionFolding copied to clipboard

Results 84 AdvancedExpressionFolding issues
Sort by recently updated
recently updated
newest added

demo-class: https://github.com/yandex-qatools/postgresql-embedded/blob/master/src/main/java/de/flapdoodle/embed/process/store/CachedPostgresArtifactStore.java#L48 ![](https://habrastorage.org/web/354/66e/03d/35466e03d66d4ac88eec64b85f8c00ae.png) ![](https://habrastorage.org/web/b78/b98/acc/b78b98acc8b64935962deb0ca7e2a40f.png)

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" +...