├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── ROADMAP.md ├── RobotoMono-Regular.ttf └── vmd.v /.gitignore: -------------------------------------------------------------------------------- 1 | vmd.exe -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/vmd/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/vmd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/vmd/HEAD/README.md -------------------------------------------------------------------------------- /ROADMAP.md: -------------------------------------------------------------------------------- 1 | ## [Version 0.1](https://github.com/vlang/vmd/projects/1) 2 | - [] -------------------------------------------------------------------------------- /RobotoMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/vmd/HEAD/RobotoMono-Regular.ttf -------------------------------------------------------------------------------- /vmd.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlang/vmd/HEAD/vmd.v --------------------------------------------------------------------------------