Skip to content

Latest commit

 

History

History
45 lines (32 loc) · 2.07 KB

README.md

File metadata and controls

45 lines (32 loc) · 2.07 KB

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/.