@techee commented on this pull request.


In vimode/src/cmds/undo.c:

> +
+void start_undo(CmdContext *c)
+{
+	c->undo_pos = -1;
+}
+
+void update_undo(CmdContext *c, gint pos)
+{
+	c->undo_pos = pos;
+}
+
+gboolean end_undo(CmdContext *c)
+{
+	ScintillaObject *sci = c->sci;
+
+	if (c->undo_pos != -1) {

Also two empty lines between functions in the file if possible.


Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.Message ID: <geany/geany-plugins/pull/1328/review/2058520041@github.com>