diff options
author | Robert Clausecker <fuz@FreeBSD.org> | 2024-10-04 14:00:32 +0000 |
---|---|---|
committer | Robert Clausecker <fuz@FreeBSD.org> | 2024-10-06 11:49:20 +0000 |
commit | a4e552651ca542b651d153c21a2e06801959cfe2 (patch) | |
tree | 047a042341639e98fdf26cab61451de74d5169d4 /editors/Makefile | |
parent | 93afbd81056f39501230bd6e748b73d22f6a31cd (diff) |
editors/ad: Adaptable text editor
ad (pronounced A.D.) is an attempt at combining a modal editing
interface of likes of vi and kakoune with the approach to extensibility
of Plan9's Acme. Inside of ad text is something you can execute as
well as edit.
It is primarily intended as playground for experimenting with
implementing various text editor features and currently is not at all
optimised or feature complete enough for use as your main text editor.
ad is aiming to be a hybrid of the pieces of various editors that I find
most useful:
- vim style modal editing to allow for convenient key bindings
- convenient text navigation and selection from vim/kakoune
- mini-buffer based user defined minor modes from emacs
- sam/acme style editing commands for larger editing actions
- acme style extension through exposing editor state and functionality
for external client programs.
- support for mouse based navigation and selection but not requiring
that as the main way of using the editor like in acme. That's fine
for desktop but most of the time I'm working with a laptop which
makes that far too clunky.
ad is not trying to replace vim (or kakoune, or emacs) in terms of being
a massively hackable editor. Rather it is trying to follow the
philosophy of acme in being an integrating development environment
(rather than integrated). By which I mean that the aim is to provide a
comfortable editing environment to work in that supports direct
interaction with external tools and programs from the outside rather
than pulling everything in.
WWW: https://crates.io/crates/ad-editor
Diffstat (limited to 'editors/Makefile')
-rw-r--r-- | editors/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editors/Makefile b/editors/Makefile index f4faa7a859a2..556ca00fa303 100644 --- a/editors/Makefile +++ b/editors/Makefile @@ -3,6 +3,7 @@ SUBDIR += 2bsd-vi SUBDIR += abiword SUBDIR += abiword-docs + SUBDIR += ad SUBDIR += aee SUBDIR += aewan SUBDIR += amp |