edward-contrib

Extra commands for the extensible edward text editor

git clone https://git.8pit.net/edward-contrib.git

commits

2026-08-11 Port to CHICKEN 6 Sören Tempel
2026-08-11 README.md: Fix reference to demonstration gif Sören Tempel
2023-07-12 README.md: Update installation instructions Sören Tempel
2023-07-12 Fetch edward from the CHICKEN Egg repository Sören Tempel
2023-04-16 menu-select: improve error handling Sören Tempel

Clone the repository to access all 27 commits.

About

This repositories demonstrates the addition of new commands to the edward text editor. The editor provides a Scheme library interface through which new commands can be added. Using this library interface, the following commands have been implemented in this repository:

  1. A ctags command which set the current address to a given tag.
  2. An fzf command for changing the current file.
  3. A pipe command for filtering text using shell commands.
  4. A scroll command which is provided by many BSD ed(1) implementations.

Demonstration

Recording of a terminal session which demonstrates the usage of an enhanced version of the Unix text editor ed(1). The editor is used to display the contents of a Scheme source code file. Within this editor session, a "z" (scroll), "T" (ctags), and "F" (fzf) command is used to navigate the source code.

Installation

Assuming CHICKEN is already installed, run:

$ git clone https://github.com/nmeum/edward-contrib
$ cd edward-contrib
$ chicken-install

Afterwards, edward-contrib should be available in your $PATH.

License

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.