aboutsummaryrefslogtreecommitdiffstats
path: root/reporter.js
diff options
context:
space:
mode:
authoranekos2010-03-20 11:06:54 +0000
committeranekos2010-03-20 11:06:54 +0000
commit284b828005e1b05322a6879e796e16757c0dc19b (patch)
tree5197361704d949a6a40c8fc3dec4a6cfbfb57c51 /reporter.js
parenta9496e301fbd756899038a96079a023d58f5d3fa (diff)
downloadvimperator-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-xreporter.js8
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);