UVSMTID

- Total activity 28
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 4
- Subscriptions 10
-
Created PyCharm incorrectly formats comments in multiline type hint
PyCharm incorrectly formats comments in multiline type hint.You can use this public code snippet to try (screenshot below):https://github.com/argrelay/argrelay/blob/v0.8.0.final/src/argrelay/runtim... -
Created "File Cache Conflict" dialog should have "Check Again" button
Answered“File Cache Conflict” can be late (hanging GUI when there is already no conflict):It is often the case that “Show Difference” already shows no difference:There should be a button “Check Again” on t... -
Created CLion: multiline array initializer into single line
CompletedI have array initialization like this: EXPECT_EQ(0, some_func({{}, {}})); But auto-formatting turns it into this: EXPECT_EQ(0, some_func( {{}, {}})); I cannot find an option in C++ formattin...