mirror of
https://github.com/chylex/IntelliJ-IdeaVim.git
synced 2025-05-19 03:34:03 +02:00
10 lines
294 B
Kotlin
10 lines
294 B
Kotlin
package com.maddyhome.idea.vim.vimscript.model
|
|
|
|
import com.intellij.openapi.actionSystem.DataContext
|
|
import com.intellij.openapi.editor.Editor
|
|
|
|
interface Executable {
|
|
|
|
fun execute(editor: Editor?, context: DataContext?, vimContext: VimContext, skipHistory: Boolean = true): ExecutionResult
|
|
}
|