~sircmpwn/gmni

0603755a00b16d318c1d7511c7a53dd68abfcaa5 — OndÅ™ej Fiala 2 years ago 5f4c617
gmnlm: add optional custom bookmark titles

It is often useful to title a bookmark differently from how the page's
author titled it.
1 files changed, 5 insertions(+), 9 deletions(-)

M src/gmnlm.c
M src/gmnlm.c => src/gmnlm.c +5 -9
@@ 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':