1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-05 19:25:46 +01:00

Fix :scriptnames

This commit is contained in:
anekos
2009-11-27 23:32:54 +09:00
parent 9dbe5cc7b0
commit 3256577767

2
common/content/io.js Normal file → Executable file
View File

@@ -920,7 +920,7 @@ lookup:
"List all sourced script names",
function () {
let list = template.tabular(["<SNR>", "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);
},