mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
[next edit] LLM-20838 do not try to remove the code that was just written by user
^LLM-20838 fixed GitOrigin-RevId: d124d3aeff833671a159d3bb17e64ee62917d6b5
This commit is contained in:
committed by
intellij-monorepo-bot
parent
932e2e518a
commit
b5ea94c4a7
+20
-10
@@ -321,24 +321,34 @@ class InlineCompletionLifecycleTestDSL(val fixture: CodeInsightTestFixture) {
|
||||
inner class Caret {
|
||||
|
||||
@ICUtil
|
||||
suspend fun moveUp() {
|
||||
callAction("EditorUp")
|
||||
suspend fun moveUp(times: Int = 1) {
|
||||
repeat(times) {
|
||||
callAction("EditorUp")
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ICUtil
|
||||
suspend fun moveDown(times: Int = 1) {
|
||||
repeat(times) {
|
||||
callAction("EditorDown")
|
||||
}
|
||||
}
|
||||
|
||||
@ICUtil
|
||||
suspend fun moveDown() {
|
||||
callAction("EditorDown")
|
||||
suspend fun moveRight(times: Int = 1) {
|
||||
repeat(times) {
|
||||
callAction("EditorRight")
|
||||
}
|
||||
}
|
||||
|
||||
@ICUtil
|
||||
suspend fun moveRight() {
|
||||
callAction("EditorRight")
|
||||
suspend fun moveLeft(times: Int = 1) {
|
||||
repeat(times) {
|
||||
callAction("EditorLeft")
|
||||
}
|
||||
}
|
||||
|
||||
@ICUtil
|
||||
suspend fun moveLeft() {
|
||||
callAction("EditorLeft")
|
||||
}
|
||||
}
|
||||
|
||||
@ICUtil
|
||||
|
||||
Reference in New Issue
Block a user