admin管理员组文章数量:1023803
I'm having troubles with Android Studio after switching to a new pc. When I'm trying to paste a whole line at the end of another one, it's inserted on a line above the one, the caret is standing on
For example, in this code:
val foo: Foo = Foo()
val bar: Bar = Bar()
If I place the caret on the val bar: Bar = Bar()
line and press Ctrl+C I'm saving the line to clipboard. Then I'm placing the caret at the end of the val foo: Foo = Foo()
line and press Ctrl+V and I'm expecting this:
val foo: Foo = Foo()val bar: Bar = Bar()
val bar: Bar = Bar()
But I get this instead:
val bar: Bar = Bar()
val foo: Foo = Foo()
val bar: Bar = Bar()
Please help
I tried searching google for any answers and only found one question with a totally opposite problem: How to paste on separate line in Android Studio?
I'm having troubles with Android Studio after switching to a new pc. When I'm trying to paste a whole line at the end of another one, it's inserted on a line above the one, the caret is standing on
For example, in this code:
val foo: Foo = Foo()
val bar: Bar = Bar()
If I place the caret on the val bar: Bar = Bar()
line and press Ctrl+C I'm saving the line to clipboard. Then I'm placing the caret at the end of the val foo: Foo = Foo()
line and press Ctrl+V and I'm expecting this:
val foo: Foo = Foo()val bar: Bar = Bar()
val bar: Bar = Bar()
But I get this instead:
val bar: Bar = Bar()
val foo: Foo = Foo()
val bar: Bar = Bar()
Please help
I tried searching google for any answers and only found one question with a totally opposite problem: How to paste on separate line in Android Studio?
本文标签: ideAndroid Studio annoying line pasting issueStack Overflow
版权声明:本文标题:ide - Android Studio annoying line pasting issue - Stack Overflow 内容由热心网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://it.en369.cn/questions/1745603646a2158603.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论