Alexey Belkov [JB]
05/06/2021, 11:06 AMCyril Find
05/06/2021, 1:22 PMEmil Kantis
05/07/2021, 11:22 AMmbonnin
05/09/2021, 10:11 PM1.5.0
(or even 1.4.32
actually) ?christophsturm
05/12/2021, 8:32 AMLastExceed
05/15/2021, 9:49 AMfoo
being printed here even though x is overriden ?
edit: oops wrong channelrobstoll
05/19/2021, 8:45 PMchristophsturm
05/27/2021, 10:14 AMokarm
06/01/2021, 11:57 AMIan
06/02/2021, 12:47 PM[08S01]
Communications link failure
The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
javax.net.ssl.SSLHandshakeException: No appropriate protocol (protocol is disabled or cipher suites are inappropriate).
Anyone have any ideas what it could be?glenkpeterson
06/04/2021, 8:40 PMfoo.toUpperCase()
.trim()
.length
Then "Use continuation indent" which just indents one more unit:
foo.toUpperCase()
.trim()
.length
Why not "Align when multiline" so the dots line up all pretty?
foo.toUpperCase()
.trim()
.length
dave08
06/06/2021, 9:24 AMaddamsson
06/08/2021, 1:56 PMNikolay Kasyanov
06/09/2021, 8:16 AMjeggy
06/10/2021, 1:43 PMchristophsturm
06/10/2021, 3:14 PMchristophsturm
06/11/2021, 7:31 AMnapperley
06/13/2021, 10:01 PMglenkpeterson
06/14/2021, 10:38 PMif ( !parts.hasGroup ||
(parts.groupId != group.id) ) {
But Kotlin/IntelliJ Style Inspection wants me to write, which obscures the "not" and the parenthesis:
if (!parts.hasGroup ||
(parts.groupId != group.id)) {
Or maybe:
if (
!parts.hasGroup ||
(parts.groupId != group.id)
) {
Which is huge, but readable. I guess I don't think this if condition deserves so much emphasis compared to the code it contains. I'd like to be able to write the first without error, or understand why my spaces are bad here.spand
06/15/2021, 11:49 AMchristophsturm
06/15/2021, 11:51 AMjeggy
06/16/2021, 1:34 PMJavier
06/16/2021, 8:18 PMmcpiroman
06/17/2021, 1:34 PMUnexpected state for resolution: Unknown
error for every gradle project.
The resulting error message is Could not resolve all dependencies for configuration ':allopen-ide-plugin:compileClasspath'
but I guess that's because it's the first project.
When I do Refresh gradle dependencies
on the root (kotlin
) project, the gradle model builds, but is not imported.
But when I then Reload Gradle Project
the circle repeats, see line 2.
The thing is, when I execute gradlew assemble
in the shell, for example, everything builds fine. Hence I do not post this at #gradle
I thing this is related to kotlin, either the intelij/gradle plugin or the project itself. I apologize if this is not the correct place to ask though.Sourabh Rawat
06/18/2021, 4:01 PMUnable to save settings: Failed to save settings. Please restart IntelliJ IDEA
Looking into logs, I see following
Caused by: java.nio.file.AccessDeniedException: \\wsl$\Arch\home\dragneelfps\Dev\realworld-kotlin-ktor\.idea\workspace.xml -> \\wsl$\Arch\home\dragneelfps\Dev\realworld-kotlin-ktor\.idea\workspace.xml~
Any help will be appreciated. Thanks in advance.Sourabh Rawat
06/19/2021, 2:09 PM./gradlew build
is working.colintheshots
06/21/2021, 3:07 PMwasyl
06/22/2021, 7:27 AMUse "camelHump" words
options selected, so when I perform Extend selection
action, the selection gets extended word by word. However, it’s not very convenient for those cases where I want to select an entire expression, for example when using multiple carets:
val f<caret>oo = 2
val f<caret>ooBar = 3
Performing Extend selection
here will select foo
in both cases, performing it again will select entire val foo = 2
in the first line, and fooBar
in the second line.
Doing the same but with Use "camelHump" words
unchecked will select foo
and fooBar
respectively on the first Extend selection
usage.
Is there a shortcut or some other way to extend a selection as if the Use…
option was off, but keep it on in general?Gama11
06/24/2021, 4:07 PMJavier
06/25/2021, 8:24 AMJavier
06/25/2021, 8:24 AMwasyl
06/25/2021, 8:25 AMchristophsturm
06/25/2021, 11:50 AM