@LiquidCake commented on this pull request.


In plugins/saveactions.c:

>  
 		/* force saving the file to enable all the related actions(tab name, filetype, etc.) */
 		document_save_file(doc, TRUE);
-    }
+	}
+}
+
+
+static gboolean is_persistent_untitled_doc_file_name(const gchar *filename)
+{
+	if (filename == NULL)
+		return FALSE;
+
+	return g_str_has_prefix(filename, PERSISTENT_UNTITLED_DOC_FILE_NAME_PREFIX);
+}
+
+
+static gboolean is_persistent_untitled_doc_file(const gchar *file_path_utf8)

done


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/pull/3911/review/2452463497@github.com>