Extend selection: select just KDoc if cursor is just before the KDoc (KT-16476)

#KT-16476 Fixed
This commit is contained in:
Toshiaki Kameyama
2019-05-23 10:03:49 +09:00
committed by Nikolay Krasko
parent 8afa938723
commit c442d69db6
5 changed files with 44 additions and 0 deletions
@@ -0,0 +1,13 @@
class C {
fun foo() {
}
<caret> /**
* comment
*/
fun bar() {
}
fun baz() {
}
}