diff options
author | anekos | 2011-04-11 21:11:26 +0900 |
---|---|---|
committer | anekos | 2011-04-11 21:11:26 +0900 |
commit | 259bc343d15c2276d26d838643d5eb2264a31cda (patch) | |
tree | 8ce00b25f3a4ad23641a9dcc237108cfea9a8b85 /maine_coon.js | |
parent | 61df35d51c77c6a6095f0dfdb68d21946a6391fd (diff) | |
download | vimperator-plugins-259bc343d15c2276d26d838643d5eb2264a31cda.tar.bz2 |
remove large moge
Diffstat (limited to 'maine_coon.js')
-rw-r--r-- | maine_coon.js | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/maine_coon.js b/maine_coon.js index c72d517..76b8c52 100644 --- a/maine_coon.js +++ b/maine_coon.js @@ -38,7 +38,7 @@ let PLUGIN_INFO = <name lang="ja">メインクーン</name> <description>Make the screen larger</description> <description lang="ja">なるべくでかい画面で使えるように</description> - <version>2.6.0</version> + <version>2.6.1</version> <author mail="anekos@snca.net" homepage="http://d.hatena.ne.jp/nokturnalmortum/">anekos</author> <minVersion>3.0</minVersion> <updateURL>https://github.com/vimpr/vimperator-plugins/raw/master/maine_coon.js</updateURL> @@ -62,8 +62,6 @@ let PLUGIN_INFO = m: Displays the message to command-line. (e.g. "Yanked http://..." "-- CARET --") - l: - Large mode (Hide status line) u: Displays the message of current page URL when page is loaded. >|| @@ -86,11 +84,6 @@ let PLUGIN_INFO = >|| let g:maine_coon_style = "border: 1px solid pink; padding: 3px; color: pink; background: black; font: 18px/1 sans-serif;" ||< - == Example == - === The mapping for large mode (l) === - >|| - :noremap <silent> s :set mainecoon!=l<CR> - ||< == Thanks == snaka72 (hidechrome part): http://vimperator.g.hatena.ne.jp/snaka72/20090106/1231262955 @@ -115,8 +108,6 @@ let PLUGIN_INFO = m: コマンドラインへのメッセージを表示します。 ("Yanked http://..." "-- CARET --" など) - l: - ラージモード (Hide status line) u: ページが読み込まれたときにURLをポップアップ表示する。 "c" と "f" の併用は意味がありません。 @@ -142,11 +133,6 @@ let PLUGIN_INFO = >|| let g:maine_coon_style = "border: 1px solid pink; padding: 3px; color: pink; background: black; font: 18px/1 sans-serif;" ||< - == Example == - === ラージモード(l) 用のマッピング === - >|| - :noremap <silent> s :set mainecoon!=l<CR> - ||< == Thanks == snaka72 (hidechrome part): http://vimperator.g.hatena.ne.jp/snaka72/20090106/1231262955 @@ -247,8 +233,6 @@ let elemStyle = window.fullScreen = full; delay(function () { hideTargets(full); - document.getElementById('status-bar').setAttribute('moz-collapsed', - options.get('mainecoon').has('l')); document.getElementById('navigator-toolbox').collapsed = full; if (!full) window.maximize(); @@ -439,8 +423,6 @@ let elemStyle = function has (c) (value.indexOf(c) >= 0); - document.getElementById('status-bar').setAttribute('moz-collapsed', has('l')); - if (has('f')) { hideChrome(false); delay(function () setFullscreen(true)); @@ -469,7 +451,6 @@ let elemStyle = ['a', 'Hide automatically command-line'], ['C', 'Hide caption bar (maximize)'], ['m', 'Displays the message to command-line'], - ['l', 'Large mode. Hide status-line'], ['u', 'Displays the message of current page URL when page is loaded.'], ]; }, |