An open API service indexing awesome lists of open source software.

https://github.com/steverusso/mdedit

Vi-like markdown editor built using Gio
https://github.com/steverusso/mdedit

gio gioui go golang markdown vim

Last synced: 5 months ago
JSON representation

Vi-like markdown editor built using Gio

Awesome Lists containing this project

README

          

# mdedit

_MdEdit is a Vi-like markdown editor built using [Gio](https://gioui.org/). It
is extremely early stage software. The Vi editor lacks most functionality and
might be pretty buggy._

## Getting Started

If you have [`task`](https://github.com/go-task/task),
[`goimports`](https://pkg.go.dev/golang.org/x/tools/cmd/goimports) and
[`gofumpt`](https://github.com/mvdan/gofumpt) installed, you can simply run
`task` (or `task nowayland`) to fmt, lint and build the project.

However, to just build the `mdedit` executable, run:

```sh
go build -o mdedit cmd/mdedit/main.go

# or, to build without wayland support:

go build -tags nowayland -o mdedit cmd/mdedit/main.go
```