I have a question about <https://youtrack.jetbrain...
# kontributors
s
I have a question about https://youtrack.jetbrains.com/issue/KT-12697. Does this issues include method parameter and field initialization?
Copy code
foo(bar: <caret>Int) 
val foo: <caret>Boolean
How about null-able type? Currently, if user uses expand selection, it ignores ? mark
Copy code
val text: S<caret>tring? = null
this becomes
Copy code
val text: <select>String</select>? = null
Where
<select>String</select>
is the highlighted word. I think ? should be included. What about generics?
Copy code
val text: F<caret>oo<Bar>? = null
This should be
Copy code
val text<select>: Foo<Bar>?</select> = null
Is there sample test codes for word selection?