File tree 4 files changed +5
-4
lines changed
plugin/src/main/kotlin/spp/jetbrains/sourcemarker
4 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 2
2
# https://github.com/detekt/detekt/blob/master/detekt-core/src/main/resources/default-detekt-config.yml
3
3
4
4
build :
5
- maxIssues : 25 # todo: zero out
5
+ maxIssues : 24 # todo: zero out
6
6
7
7
formatting :
8
8
Indentation :
Original file line number Diff line number Diff line change @@ -28,10 +28,10 @@ import spp.jetbrains.UserData
28
28
import spp.jetbrains.marker.SourceMarker
29
29
import spp.jetbrains.marker.SourceMarkerKeys
30
30
import spp.jetbrains.plugin.LiveStatusManager
31
+ import spp.jetbrains.sourcemarker.config.SourceMarkerConfig
31
32
import spp.jetbrains.sourcemarker.mark.SourceMarkSearch
32
33
import spp.jetbrains.sourcemarker.service.discover.TCPServiceDiscoveryBackend
33
34
import spp.jetbrains.sourcemarker.service.instrument.breakpoint.BreakpointHitWindowService
34
- import spp.jetbrains.sourcemarker.config.SourceMarkerConfig
35
35
import spp.protocol.instrument.LiveBreakpoint
36
36
import spp.protocol.instrument.LiveLog
37
37
import spp.protocol.instrument.event.LiveBreakpointHit
Original file line number Diff line number Diff line change @@ -25,9 +25,9 @@ import io.vertx.ext.eventbus.bridge.tcp.impl.protocol.FrameHelper
25
25
import io.vertx.kotlin.coroutines.CoroutineVerticle
26
26
import spp.jetbrains.marker.SourceMarker
27
27
import spp.jetbrains.marker.SourceMarkerKeys
28
+ import spp.jetbrains.sourcemarker.config.SourceMarkerConfig
28
29
import spp.jetbrains.sourcemarker.mark.SourceMarkSearch
29
30
import spp.jetbrains.sourcemarker.service.discover.TCPServiceDiscoveryBackend
30
- import spp.jetbrains.sourcemarker.config.SourceMarkerConfig
31
31
import spp.protocol.service.SourceServices.Subscribe.toLiveViewSubscriberAddress
32
32
import spp.protocol.view.LiveViewEvent
33
33
Original file line number Diff line number Diff line change @@ -416,7 +416,8 @@ class AutocompleteField<T : AutocompleteFieldRow>(
416
416
if (list.selectedValue is LiveCommandFieldRow ) {
417
417
val liveCommand = (list.selectedValue as LiveCommandFieldRow ).liveCommand
418
418
if (! text.lowercase().startsWith(liveCommand.getTriggerName().lowercase())) return
419
- val params = substringAfterIgnoreCase(text, liveCommand.getTriggerName()).split(" " ).filter { it.isNotEmpty() }
419
+ val params = substringAfterIgnoreCase(text, liveCommand.getTriggerName())
420
+ .split(" " ).filter { it.isNotEmpty() }
420
421
421
422
var textOffset = 0
422
423
for ((index, param) in liveCommand.params.withIndex()) {
You can’t perform that action at this time.
0 commit comments