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
- Host: GitHub
- URL: https://github.com/steverusso/mdedit
- Owner: steverusso
- License: unlicense
- Created: 2022-02-09T04:50:42.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-04-01T13:57:37.000Z (about 3 years ago)
- Last Synced: 2025-04-04T12:49:52.377Z (about 1 year ago)
- Topics: gio, gioui, go, golang, markdown, vim
- Language: Go
- Homepage:
- Size: 1.15 MB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
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
```