diff options
author | anekos | 2010-03-20 11:06:54 +0000 |
---|---|---|
committer | anekos | 2010-03-20 11:06:54 +0000 |
commit | 284b828005e1b05322a6879e796e16757c0dc19b (patch) | |
tree | 5197361704d949a6a40c8fc3dec4a6cfbfb57c51 /reporter.js | |
parent | a9496e301fbd756899038a96079a023d58f5d3fa (diff) | |
download | vimperator-plugins-284b828005e1b05322a6879e796e16757c0dc19b.tar.bz2 |
フォーマット修正
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@37064 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'reporter.js')
-rwxr-xr-x | reporter.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/reporter.js b/reporter.js index cce9552..414ce40 100755 --- a/reporter.js +++ b/reporter.js @@ -176,11 +176,11 @@ let PLUGIN_INFO = options: [LIMIT_OPTION], action: function (file, args) { function writeSection (title, writer) { - file.write( - '""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""\n' + - '" ' + title + '\n\n' - ); + file.writeln('""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""'); + file.writeln('" ' + title); + file.writeln(''); writer(file, args); + file.writeln('\n'); } writeSection('Color Scheme', Writer.colors); |