about summary refs log tree commit diff
path: root/edit.h
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2022-03-12 19:41:20 -0500
committerJune McEnroe <june@causal.agency>2022-03-12 19:41:20 -0500
commit0d9535378ae6b702d3d67493912fc2fd1b5f5ab2 (patch)
tree5d309951d2470ef9e2b4fb2d99f9b0f42504b9fc /edit.h
parentImplement vi R and r (diff)
downloadcatgirl-0d9535378ae6b702d3d67493912fc2fd1b5f5ab2.tar.gz
catgirl-0d9535378ae6b702d3d67493912fc2fd1b5f5ab2.zip
Implement r with count
Diffstat (limited to '')
-rw-r--r--edit.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/edit.h b/edit.h
index 382e9d2..18e9cd2 100644
--- a/edit.h
+++ b/edit.h
@@ -39,8 +39,9 @@ struct Edit {
 			EditViInsert,
 			EditViCommand,
 		} mode;
-		bool lnext;
+		unsigned count;
 		char verb;
+		bool lnext;
 	} vi;
 };