Ecosyste.ms: Awesome

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

https://github.com/driusan/de

A Programmer's Text Editor
https://github.com/driusan/de

acme-like go programmer-editor shiny text-editor vim-like

Last synced: 3 months ago
JSON representation

A Programmer's Text Editor

Lists

README

        

# The de Editor [![Build Status](https://travis-ci.org/driusan/de.svg?branch=master)](https://travis-ci.org/driusan/de)

de is a programmer's editor. (Where that programmer happens to be [driusan](https://github.com/driusan/).)

It's kind of like a bastard child of vim and Plan 9's acme editor, because vim feels inadequate on a
computer with a mouse after using acme, and acme feels inadequate on a computer with a keyboard after
using vi.

Like vim, it's a modal editor with syntax highlighting that uses hjkl for movement.
Like acme, it attempts to exploit your current OS environment instead of replacing it and tries to
make the mouse useful.

See [USAGE.md](USAGE.md) for usage instructions.

![de screenshot](https://driusan.github.io/de/descreenshot_readme.png)

## Features

* Syntax highlighting (currently only Go and PHP with some basic markdown.)
* vi-like keybindings and philosophy.
* acme-like mouse bindings and philosophy.
* Ability to write plugins in Go. See [PLUGINS.md](PLUGINS.md).
* Ability to plumb with p9p plumber. See [PLUMBING.md](PLUMBING.md)

![de screenshot](https://driusan.github.io/de/descreenshot_code.png)

## Limitations and Bugs

* vi-like functionality not fully implemented (most notably some movement verbs like '%' are missing,
and see notes in issue #1.)
* Can not open multiple files/windows at a time. (if your workflow is like mine, it means you often
save and quit, do something in the shell, and then relaunch your editor. The startup time should
be fast enough to support this style of workflow.)

## Installation

It should be installable with the standard go tools:

```
go get -u github.com/driusan/de/...
```

Then as long as $GOPATH/bin is in your path, you can launch with `de [filename]`

## Community

There's now a #de channel on gophers.slack.com for users of this editor.