From c929a696eb8a1902a740a19f8f22c745df0cf953 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 20 Feb 2022 17:16:21 -0500 Subject: Clean up unimplemented editing mode stuff --- edit.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/edit.h b/edit.h index 957d3e3..db0d416 100644 --- a/edit.h +++ b/edit.h @@ -29,7 +29,7 @@ #include enum EditMode { - EditEmacs, + EditInsert, }; struct Edit { @@ -63,9 +63,6 @@ enum EditFn { // Perform an editing function. int editFn(struct Edit *e, enum EditFn fn); -// Perform a vi-mode editing function. -int editVi(struct Edit *e, wchar_t ch); - // Insert a character at the cursor. int editInsert(struct Edit *e, wchar_t ch); -- cgit 1.4.1