1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-23 21:45:30 +00:00

editor: Save temp files as .md

Probably many people render text in their head to markdown
automatically.
This commit is contained in:
Michael Vetter 2021-04-16 22:18:01 +02:00
parent 2f4289bb3e
commit db2205d30c

View File

@ -9320,9 +9320,9 @@ cmd_editor(ProfWin* window, const char* const command, gchar** args)
return TRUE;
}
// build temp file name. Example: /tmp/profanity-f2f271dd-98c8-4118-8d47-3bd49c8e2e63.txt
// build temp file name. Example: /tmp/profanity-f2f271dd-98c8-4118-8d47-3bd49c8e2e63.md
char* uuid = xmpp_uuid_gen(ctx);
char* filename = g_strdup_printf("%s%s%s.txt", g_get_tmp_dir(), "/profanity-", uuid);
char* filename = g_strdup_printf("%s%s%s.md", g_get_tmp_dir(), "/profanity-", uuid);
if (uuid) {
xmpp_free(ctx, uuid);
}