All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.Vim.kt Maven / Gradle / Ivy

There is a newer version: 0.0.87
Show newest version
package pl.mareklangiewicz.kommand

import pl.mareklangiewicz.kground.*
import pl.mareklangiewicz.kommand.Vim.Option.*

fun vim(vararg files: String, init: Vim.() -> Unit = {}) = Vim(files.toMutableList()).apply(init)
fun gvim(vararg files: String, init: Vim.() -> Unit = {}) = vim(*files) { -Gui; init() }

data class Vim(
  val files: MutableList = mutableListOf(),
  val options: MutableList




© 2015 - 2024 Weber Informatics LLC | Privacy Policy