[w3m-dev-en 00670] GOTO behavior change

* main.c (goURL): default URL is current URL
 	if retry_http specified, and inputed URL is not absolute URL
	add http:// to top of url

* linein.c (InputKeymap): C-w as backword-kill-word
From: Fumitoshi UKAI  <ukai@debian.or.jp>
This commit is contained in:
Fumitoshi UKAI
2002-01-22 10:45:14 +00:00
parent 761b4d2cb7
commit 59ec44c6a4
3 changed files with 26 additions and 7 deletions

View File

@@ -1,4 +1,4 @@
/* $Id: linein.c,v 1.20 2002/01/16 19:05:36 ukai Exp $ */
/* $Id: linein.c,v 1.21 2002/01/22 10:45:14 ukai Exp $ */
#include "fm.h"
#include "local.h"
#include "myctype.h"
@@ -56,7 +56,7 @@ void (*InputKeymap[32]) () = {
/* C-h C-i C-j C-k C-l C-m C-n C-o */
_bs, iself, _enter, killn, iself, _enter, _next, iself,
/* C-p C-q C-r C-s C-t C-u C-v C-w */
_prev, _quo, _bsw, iself, _mvLw, killb, _quo, iself,
_prev, _quo, _bsw, iself, _mvLw, killb, _quo, _bsw,
/* C-x C-y C-z C-[ C-\ C-] C-^ C-_ */
_tcompl,_mvRw, iself, _esc, iself, iself, iself, iself,
};