@techee commented on this pull request.


> +
+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 or view it on GitHub:
https://github.com/geany/geany-plugins/pull/1328#discussion_r1601948996
You are receiving this because you are subscribed to this thread.

Message ID: <geany/geany-plugins/pull/1328/review/2058520...@github.com>

Reply via email to