diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-11-05 17:10:04 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-11-05 17:10:04 +0000 |
commit | a772c51a1672e5dd7c9c70ee7e50cfa79e13b023 (patch) | |
tree | 9e6b4139be67b7562324f19728db83d0d19ae7ba /doc/README.func | |
parent | fix indent (diff) | |
download | w3m-a772c51a1672e5dd7c9c70ee7e50cfa79e13b023.tar.gz w3m-a772c51a1672e5dd7c9c70ee7e50cfa79e13b023.zip |
[w3m-dev 03372] tab browser
* display.c (displayBuffer): add ny
rootY offset by tab
tab line
(cursorDown): offset rootY
(arrangeCursor): offset rootY
* etc.c (columnSkip): offset rootY
(lineSkip): offset rootY
(currentLineSkip): offset rootY
* file.c (HTMLlineproc2body): ATTR_TARGET
* fm.h (MapArea): add target
(Buffer): add rootY
(TabBuffer): added
(Currentbuf): comment out
(Firstbuf): comment out
(CurrentTab): added
(FirstTab): added
(LastTab): added
(open_tab_blank): added
(close_tab_back): added
(nTab): added
(TabCols): added
(N_TAB): added
(Currentbuf): CurrentTab->currentBuffer
(Firstbuf): CurrentTab->firstBuffer
* funcname.tab (CLOSE_TAB): added
(NEW_TAB): added
(NEXT_TAB): added
(PREV_TAB): added
(TAB_GOTO): added
(TAB_GOTO_RELATIVE): added
(TAB_LEFT): added
(TAB_LINK): added
(TAB_MENU): added
(TAB_RIGHT): added
* html.c (ALST_AREA): add ATTR_TARGET
* image.c (showImageProgress): offset rootY
* main.c (_newT): added
(followTab): added
(moveTab): added
(check_target): added
(MAIN): init tab related values
buf => tab
(nscroll): offset rootY
(pgFore): offset rootY
(pgBack): offset rootY
(ctrCsrV): offset rootY
(_movD): offset rootY
(_movU): offset rootY
(_goLine): offset rootY
(_mark): offset rootY
(followA): check target
(_followForm): offset rootY
(drawAnchorCursor0): offset rootY
(drawAnchorCursor): offset rootY
(backBf): check close_tab_back
(follow_map): rewrite for tab, check target
(posTab): added
(process_mouse): tab operation
offset rootY
(deleteFiles): for all buffers in all tabs
(newTab): added
(newT): added
(numTab): added
(deleteTab): added
(closeT): added
(nextT): added
(prevT): added
(followTab): added
(tabA): added
(tabURL0): added
(tabURL): added
(tabrURL): added
(moveTab): added
(tabR): added
(tabL): added
* map.c (follow_map_menu): return MapArea
(newMapArea): add target args
* menu.c (SelTabMenu): added
(SelTabV): added
(initSelTabMenu): added
(smChTab): added
(smDelTab): added
(MainMenuItem): add Select Tab
on New Tab
(popupMenu): add initSelTabMenu()
offset rootY
(mainMn): offset rootY
(selMn): offset rootY
(initSelectMenu): offset rootY
(tabMn): added
* proto.h (newT): added
(closeT): added
(nextT): added
(prevT): added
(tabA): added
(tabURL): added
(tabrURL): added
(tabR): added
(tabL): added
(newTab): added
(deleteTab): added
(follow_map_menu): return MapArea
(newMapArea): add target arg
(tabMn): added
* rc.c (CMT_OPEN_TAB_BLANK): added
(CMT_CLOSE_TAB_BACK): added
(open_tab_blank): added
(close_tab_back): added
* doc/README.func (CLOSE_TAB): added
(NEW_TAB): added
(NEXT_TAB): added
(PREV_TAB): added
(TAB_GOTO): added
(TAB_GOTO_RELATIVE): added
(TAB_LEFT): added
(TAB_LINK): added
(TAB_MENU): added
(TAB_RIGHT): added
* doc-jp/README.func: ditto doc/README.func
From: Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
Diffstat (limited to 'doc/README.func')
-rw-r--r-- | doc/README.func | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/README.func b/doc/README.func index 7647f9d..57a03e5 100644 --- a/doc/README.func +++ b/doc/README.func @@ -6,6 +6,7 @@ BEGIN Go to the first line BOOKMARK Read bookmark CENTER_H Move to the center line CENTER_V Move to the center column +CLOSE_TAB Close current tab COMMAND Execute w3m command(s) COOKIE View cookie list DEFINE_KEY Define a binding between a key stroke and a user command @@ -57,6 +58,7 @@ MOVE_RIGHT1 Move cursor right (1 columns shift at the right edge) MOVE_UP Move cursor up (a half screen scroll at the top of screen) MOVE_UP1 Move cursor up (1 line scrol at the top of screen) MSGS Display error messages +NEW_TAB Open new tab NEXT_DOWN Move to next downward link NEXT_LEFT Move to next left link NEXT_LEFT_UP Move to next left (or upward) link @@ -65,6 +67,7 @@ NEXT_MARK Move to next word NEXT_PAGE Move to next page NEXT_RIGHT Move to next right link NEXT_RIGHT_DOWN Move to next right (or downward) link +NEXT_TAB Move to next tab NEXT_UP Move to next upward link NEXT_WORD Move to next word NOTHING Do nothing @@ -78,6 +81,7 @@ PIPE_SHELL Execute shell command and browse PREV_LINK Move to previous link PREV_MARK Move to previous mark PREV_PAGE Move to previous page +PREV_TAB Move to previous tab PREV_WORD Move to previous word PRINT Save buffer to file QUIT Quit w3m @@ -106,6 +110,12 @@ SOURCE View HTML source STOP_IMAGE Stop loading and drawing of images SUBMIT Submit form SUSPEND Stop loading document +TAB_GOTO Open URL on new tab +TAB_GOTO_RELATIVE Open relative URL on new tab +TAB_LEFT Move current tab left +TAB_LINK Open current link on new tab +TAB_MENU Popup tab selection menu +TAB_RIGHT Move current tab right UP Scroll up one line VERSION Display version of w3m VIEW View HTML source |