CodeGlancePro icon indicating copy to clipboard operation
CodeGlancePro copied to clipboard

[FEATURE] Add marker for top-level functions in Kotlin

Open svenjacobs opened this issue 4 months ago • 1 comments

First of all thanks for this awesome plugin!

When developing Jetpack Compose, you work with a lot of (top-level) functions in a Kotlin file.

@Composable
fun MyScreen() {
  MyWidget()
}

@Composable
private fun MyWidget() {
}

It would be nice if functions (both public and private) can also be displayed as markers.

svenjacobs avatar Oct 25 '24 05:10 svenjacobs