Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix formatting for single line completions #1005

Merged
merged 3 commits into from
Mar 12, 2024

Conversation

pkukielka
Copy link
Contributor

Fixes #987

Changes

Fixed formatting (previously non-existing) for single line completions, simplified the code, and added the tests.

Test plan

Automatic tests for formatter were added.
Additionally manual QA was done using TESTING.MD section Single-line autocomplete' and Multi-line autocomplete`

@pkukielka pkukielka force-pushed the pkukielka/improve-completion-formatting branch from 6f0cc3d to 4826bcc Compare March 7, 2024 18:09
Comment on lines 37 to 46
TestCase.assertEquals(
"""|public static int fib(int n) {
| if (n <= 1) {
| return n;
| }
| return fib(n - 1) + fib(n - 2);
| }"""
.trimMargin(),
formatText(
"public static int fib(int n) { if (n <= 1) { return n; } return fib(n-1) + fib(n-2); }",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💜

Copy link
Contributor

@mkondratek mkondratek left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The formatting seems to work correctly.

I see a few issues to are probably not related to this PR directly:

  • fun bubbleSort(array: MutableList<Int>) { in Kotlin does not work (while the similar code in Java produced the proper complection)
  • multiline suggestions seem to appear very rare
  • it's hard to tell that Cody is "thinking" on the autocompletions - we indicator is still broken, we should fix it

@pkukielka pkukielka merged commit 86d70a9 into main Mar 12, 2024
5 checks passed
@pkukielka pkukielka deleted the pkukielka/improve-completion-formatting branch March 12, 2024 16:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

bug: Code is formatted incorrectly after code completion
3 participants