Roberto Machorro

Roberto Machorro

Software Developer

© 2020

Dark Mode

Moped Released to AppStore

I’m excited to announce the availability of Moped in the AppStore. If you prefer, you can also fetch the binary from GitHub.

Moped is an open source and free text editor for macOS. Its main features is being small, fast, syntax highlight and basic theme support. You can read more about it and get the source code at the GitHub Moped site. Feel free to contribute to it. Report any issues you may find here.

Moped Screenshot

I have a lot of plans for it, among them is CLI launching and remote connections. For now, you can do a poor man’s CLI support by placing this script in your path:

#!/bin/bash
for FILE in $@
do
	open -a Moped $FILE
done

This allows one or several files to be openned for edit in Moped.