From 264c4186ed8e3d2e3275a6514c8714903036cb26 Mon Sep 17 00:00:00 2001 From: cflip Date: Tue, 31 Jan 2023 12:33:30 -0700 Subject: Rename the 'command mode' to 'prompt mode' Since this mode will also be used to accept input for setting the filename, searching for a string and possibly more, it makes more sense for this mode to be called prompt mode. There is also less ambiguity between normal mode because sometimes that is also called command mode. --- editor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'editor.h') diff --git a/editor.h b/editor.h index 0ae0fae..e530956 100644 --- a/editor.h +++ b/editor.h @@ -9,7 +9,7 @@ enum editor_mode { EDITOR_MODE_NORMAL, EDITOR_MODE_INSERT, - EDITOR_MODE_COMMAND + EDITOR_MODE_PROMPT }; struct editor_state { -- cgit v1.2.3