Changeset 35992

Show
Ignore:
Timestamp:
11/25/09 18:50:03 (3 years ago)
Author:
anekos
Message:

:t hoge などで移動した際に、コマンドラインが閉じないのを閉じるように

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/javascript/vimperator-plugins/trunk/maine_coon.js

    r34824 r35992  
    11/* 
    2 Copyright (c) 2008, anekos. 
     2Copyright (c) 2008-2009, anekos. 
    33All rights reserved. 
    44 
     
    3939  <description>Make the screen larger</description> 
    4040  <description lang="ja">なるべくでかい画面で使えるように</description> 
    41   <version>2.2.3</version> 
     41  <version>2.3.0</version> 
    4242  <author mail="anekos@snca.net" homepage="http://d.hatena.ne.jp/nokturnalmortum/">anekos</author> 
    43   <minVersion>2.0pre</minVersion> 
    44   <maxVersion>2.0pre</maxVersion> 
     43  <minVersion>2.3</minVersion> 
     44  <maxVersion>2.3</maxVersion> 
    4545  <updateURL>http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk/maine_coon.js</updateURL> 
    4646  <license>new BSD License (Please read the source code comments of this plugin)</license> 
     
    363363  }); 
    364364 
     365  around(commandline._callbacks.submit, modes.EX, function (next, args) { 
     366    let r = next(); 
     367    if (autoHideCommandLine && !(modes.extended & modes.OUTPUT_MULTILINE)) 
     368      commandline.close(); 
     369    return r; 
     370  }); 
     371 
    365372  options.add( 
    366373    ['mainecoon'],