1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2025-02-28 02:45:59 +01:00
This commit is contained in:
Filipp Vakhitov 2023-07-28 20:09:09 +03:00
parent dfbefe96da
commit 0201acb5f7

View File

@ -521,20 +521,6 @@ class ReplaceWithRegisterTest : VimTestCase() {
assertMode(VimStateMachine.Mode.COMMAND)
}
@Test
@EnabledOnOs(OS.MAC, OS.WINDOWS)
fun `test replace in visual with clipboard unnamedplus`() {
VimPlugin.getRegister().resetRegisters()
configureByText("one ${c}two three")
enterCommand("set clipboard+=unnamedplus")
injector.registerGroup.storeText('+', "four")
typeText(injector.parser.parseKeys("vegr"))
assertState("one four three")
enterCommand("set clipboard&")
}
@Test
@EnabledOnOs(OS.LINUX)
fun `test replace in visual with clipboard unnamedplus linux`() {