diff options
author | anekos | 2008-09-30 13:36:02 +0000 |
---|---|---|
committer | anekos | 2008-09-30 13:36:02 +0000 |
commit | 230c3c245e82be4881f42feea62507cd60992a88 (patch) | |
tree | 9a432ada2fb59fb6e8544940de8ba09c66398b51 /auto_detect_link.js | |
parent | d50a29ba334632df86bbd51aa3d4641d2f5fdf89 (diff) | |
download | vimperator-plugins-230c3c245e82be4881f42feea62507cd60992a88.tar.bz2 |
・echoを常に位置行表示にした
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@20317 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'auto_detect_link.js')
-rw-r--r-- | auto_detect_link.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/auto_detect_link.js b/auto_detect_link.js index 56934ca..ed76a1e 100644 --- a/auto_detect_link.js +++ b/auto_detect_link.js @@ -160,7 +160,7 @@ // 開いたURIなどの表示 function displayOpened (link) { let msg = 'open: ' + link.type + ' <' + link.text + '> ' + link.uri; - setTimeout(function () liberator.echo(msg), 1000); + setTimeout(function () liberator.echo(msg, liberator.commandline.FORCE_SINGLELINE), 1000); liberator.log(msg); } |