diff options
author | hogelog | 2009-07-03 05:04:52 +0000 |
---|---|---|
committer | hogelog | 2009-07-03 05:04:52 +0000 |
commit | bedb35c89c16e4b37800c71fcaef55a280a3c9bf (patch) | |
tree | 4733599b249f7580630bbbae59854da83a0a83bc /takahashiPresentation.js | |
parent | 8fa2331dc7fda66cd22671a24745d0feafc9fb7a (diff) | |
download | vimperator-plugins-bedb35c89c16e4b37800c71fcaef55a280a3c9bf.tar.bz2 |
* follow HEAD(2.2pre)
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@34267 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'takahashiPresentation.js')
-rw-r--r-- | takahashiPresentation.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/takahashiPresentation.js b/takahashiPresentation.js index e5b33eb..633f60d 100644 --- a/takahashiPresentation.js +++ b/takahashiPresentation.js @@ -9,7 +9,6 @@ var PLUGIN_INFO = <maxVersion>2.0a1</maxVersion> <updateURL>http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk/takahashiPresentation.js</updateURL> <date>2008/12/23 09:20:07</date> - <exampleURL></exampleURL> <detail><![CDATA[ == COMMANDS == @@ -18,7 +17,6 @@ presentation: == HOWTO == open HTML file includes <pre id="page">...</pre> and <div id="text">...</div>. start :presentation. -Example HTML http://konbu.s13.xrea.com/lib/vimperator/takahashi_example.html ]]></detail> </VimperatorPlugin>; //}}} @@ -28,7 +26,7 @@ Example HTML http://konbu.s13.xrea.com/lib/vimperator/takahashi_example.html ['<Left>', 'prev page', function() prevPage()], ['^', 'first page', function() loadPage(0)], ['$', 'last page', function() loadPage(pages.length-1)], - ['.', 'last page', function(count) loadPage(count?count-1:0), {flags: Mappings.flags.COUNT}], + ['.', 'last page', function(count) loadPage(count?count-1:0), {count: true], ['q', 'stop presentation', function() stop()], ]; let win; |