[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:
Ilya Kirillov
2025-10-29 23:07:39 +00:00
committed by intellij-monorepo-bot
parent 932e2e518a
commit b5ea94c4a7
@@ -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