1
0
Fork 0
IntelliJ-IdeaVim/vim-engine/src/main/kotlin/com/maddyhome/idea/vim/listener/VimYankListener.kt

17 lines
428 B
Kotlin

/*
* Copyright 2003-2022 The IdeaVim authors
*
* Use of this source code is governed by an MIT-style
* license that can be found in the LICENSE.txt file or at
* https://opensource.org/licenses/MIT.
*/
package com.maddyhome.idea.vim.listener
import com.maddyhome.idea.vim.api.VimEditor
import com.maddyhome.idea.vim.common.TextRange
interface VimYankListener {
fun yankPerformed(editor: VimEditor, range: TextRange)
}