1
0
Fork 0
mirror of https://git.sr.ht/~sircmpwn/gmni synced 2024-05-07 09:26:03 +02:00

gmnlm: add optional custom bookmark titles

It is often useful to title a bookmark differently from how the page's
author titled it.
This commit is contained in:
Ondřej Fiala 2022-01-12 19:04:35 +01:00 committed by Drew DeVault
parent 5f4c617262
commit 0603755a00

View File

@ -80,7 +80,7 @@ const char *help_msg =
"b[N]\tJump back N entries in history, N is optional, default 1\n"
"f[N]\tJump forward N entries in history, N is optional, default 1\n"
"H\tView all page history\n"
"m\tSave bookmark\n"
"m [title]\tSave bookmark\n"
"M\tBrowse bookmarks\n"
"r\tReload the page\n"
"d <path>\tDownload page to <path>\n"
@ -154,7 +154,7 @@ trim_ws(char *in)
}
static void
save_bookmark(struct browser *browser)
save_bookmark(struct browser *browser, const char *title)
{
char *path_fmt = get_data_pathfmt();
static char path[PATH_MAX+1];
@ -178,11 +178,6 @@ save_bookmark(struct browser *browser)
return;
}
char *title = browser->page_title;
if (title) {
title = trim_ws(browser->page_title);
}
fprintf(f, "=> %s%s%s\n", browser->plain_url,
title ? " " : "", title ? title : "");
fclose(f);
@ -617,8 +612,9 @@ do_prompts(const char *prompt, struct browser *browser)
result = PROMPT_AGAIN;
goto exit;
case 'm':
if (in[1]) break;
save_bookmark(browser);
if (in[1] != '\0' && !isspace(in[1])) break;
char *title = in[1] ? &in[1] : browser->page_title;
save_bookmark(browser, trim_ws(title));
result = PROMPT_AGAIN;
goto exit;
case 'M':