diff options
author | Tatsuya Kinoshita <tats@vega.ocn.ne.jp> | 2011-05-04 07:05:14 +0000 |
---|---|---|
committer | Tatsuya Kinoshita <tats@vega.ocn.ne.jp> | 2011-05-04 07:05:14 +0000 |
commit | 72f72d64a422d6628c4796f5c0bf2e508f134214 (patch) | |
tree | 0c9ea90cc53310832c977265521fb44db24a515e /doc-jp/README.mouse | |
parent | Adding upstream version 0.3 (diff) | |
download | w3m-72f72d64a422d6628c4796f5c0bf2e508f134214.tar.gz w3m-72f72d64a422d6628c4796f5c0bf2e508f134214.zip |
Adding upstream version 0.5.1upstream/0.5.1
Diffstat (limited to 'doc-jp/README.mouse')
-rw-r--r-- | doc-jp/README.mouse | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/doc-jp/README.mouse b/doc-jp/README.mouse new file mode 100644 index 0000000..31fd11e --- /dev/null +++ b/doc-jp/README.mouse @@ -0,0 +1,66 @@ +~/.w3m/mouse の形式は、 + +menu メニューの文字列(デフォルトなし) +lastline 最下行の文字列(デフォルト『≪↑↓』) +button 番号 位置 関数 [引数] + + +番号: 1…左ボタン + 2…中ボタン + 3…右ボタン + +位置: menu <x1> <x2> … メニュー上でクリック + lastline <x1> <x2> … 最下行でクリック + default … 他の設定が無い時のデフォルト + anchor … アンカー上でクリック + active … アクティブなアンカー上でクリック + tab … タブ上でクリック + +<x1> : 左端のカラム位置 +<x2> : 右端のカラム位 + +です。 +互換性のために <位置> での menu は省略可能です。 + +デフォルトの設定(func.c 内)は、 + +button 1 default MOVE_MOUSE +button 2 default BACK +button 3 default MENU_MOUSE + +button 1 active GOTO_LINK + +button 1 tab TAB_MOUSE +button 2 tab CLOSE_TAB_MOUSE + +lastline "≪↑↓" +button 1 lastline 0 1 BACK +button 1 lastline 2 3 PREV_PAGE +button 1 lastline 4 5 NEXT_PAGE + +と同等です。(これまでと同じはず) + +・例えば、 + + button 1 anchor COMMAND "MOVE_MOUSE; GOTO_LINK" + + と設定するとアクティブでないアンカー上でも左クリックしただけで、 + リンク先に飛びます。(GUI ブラウザと同じ様な動作) + +・~/.w3m/menu で + + menu Active + func "リンクを表示 (a)" GOTO_LINK "a" + func "新しいタブで表示 (t)" TAB_LINK "t" + func "リンクを保存 (d)" SAVE_LINK "d" + func "外部ブラウザで表示 (m)" EXTERN_LINK "m" + end + + の様に設定しておいて、~/.w3m/mouse で + + button 3 anchor MENU_MOUSE Active + + と設定すると、アンカー上で右クリックしするとアンカー用の + メニューが開きます。 + +こんな感じで使ってみてください。 |