From 3256577767d5ace51dd744b116dc83e9e9c32cd4 Mon Sep 17 00:00:00 2001 From: anekos Date: Fri, 27 Nov 2009 23:32:54 +0900 Subject: [PATCH] Fix :scriptnames --- common/content/io.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 common/content/io.js diff --git a/common/content/io.js b/common/content/io.js old mode 100644 new mode 100755 index 3e5bd21a..bbb3286a --- a/common/content/io.js +++ b/common/content/io.js @@ -920,7 +920,7 @@ lookup: "List all sourced script names", function () { let list = template.tabular(["", "Filename"], ["text-align: right; padding-right: 1em;"], - ([i + 1, file] for ([i, file] in Iterator(this._scriptNames)))); // TODO: add colon and remove column titles for pedantic Vim compatibility? + ([i + 1, file] for ([i, file] in Iterator(io._scriptNames)))); // TODO: add colon and remove column titles for pedantic Vim compatibility? commandline.echo(list, commandline.HL_NORMAL, commandline.FORCE_MULTILINE); },