aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWe're Yet <58348703+butwerenotthereyet@users.noreply.github.com>2020-01-04 07:34:45 +0000
committerWe're Yet <58348703+butwerenotthereyet@users.noreply.github.com>2020-01-04 07:42:05 +0000
commit3f15e127d2807d6dd49d085eb766987b3cdca767 (patch)
tree3c35abd44abacaf7a7d855c56a6a8c033e988b39
parentUpdate ChangeLog (diff)
downloadw3m-3f15e127d2807d6dd49d085eb766987b3cdca767.tar.gz
w3m-3f15e127d2807d6dd49d085eb766987b3cdca767.zip
Add command to go home.
When w3m is launched, if no other options are specified, it attempts to read HTTP_HOME and WWW_HOME from the environment and upon finding a value for one of these load the url specified. Once launched, though, w3m provides no convenience for navigating to the home page. Here, that ability is added. A new command GOTO_HOME is defined with a default key binding of C-_.
-rw-r--r--keybind.c2
-rw-r--r--main.c17
-rw-r--r--proto.h1
3 files changed, 19 insertions, 1 deletions
diff --git a/keybind.c b/keybind.c
index fec0c65..e9ef08b 100644
--- a/keybind.c
+++ b/keybind.c
@@ -13,7 +13,7 @@ unsigned char GlobalKeymap[128] = {
/* C-p C-q C-r C-s C-t C-u C-v C-w */
movU, closeT, isrchbak, isrchfor, tabA, prevA, pgFore, wrapToggle,
/* C-x C-y C-z C-[ C-\ C-] C-^ C-_ */
- nulcmd, nulcmd, susp, escmap, nulcmd, nulcmd, nulcmd, nulcmd,
+ nulcmd, nulcmd, susp, escmap, nulcmd, nulcmd, nulcmd, goHome,
/* SPC ! " # $ % & ' */
pgFore, execsh, reMark, pipesh, linend, nulcmd, nulcmd, nulcmd,
/* ( ) * + , - . / */
diff --git a/main.c b/main.c
index 7bb058e..1cf8131 100644
--- a/main.c
+++ b/main.c
@@ -4256,6 +4256,23 @@ DEFUN(goURL, GOTO, "Open specified document in a new buffer")
goURL0("Goto URL: ", FALSE);
}
+DEFUN(goHome, GOTO_HOME, "Open home page in a new buffer")
+{
+ char *url;
+ if ((url = getenv("HTTP_HOME")) != NULL ||
+ (url = getenv("WWW_HOME")) != NULL) {
+ ParsedURL p_url;
+ Buffer *cur_buf = Currentbuf;
+ SKIP_BLANKS(url);
+ url = url_encode(url, NULL, 0);
+ parseURL2(url, &p_url, NULL);
+ pushHashHist(URLHist, parsedURL2Str(&p_url)->ptr);
+ cmd_loadURL(url, NULL, NULL, NULL);
+ if (Currentbuf != cur_buf) /* success */
+ pushHashHist(URLHist, parsedURL2Str(&Currentbuf->currentURL)->ptr);
+ }
+}
+
DEFUN(gorURL, GOTO_RELATIVE, "Go to relative address")
{
goURL0("Goto relative URL: ", TRUE);
diff --git a/proto.h b/proto.h
index ed8f890..d513527 100644
--- a/proto.h
+++ b/proto.h
@@ -81,6 +81,7 @@ extern void prevBf(void);
extern void backBf(void);
extern void deletePrevBuf(void);
extern void goURL(void);
+extern void goHome(void);
extern void gorURL(void);
extern void ldBmark(void);
extern void adBmark(void);