1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 17:32:25 +01:00

fix position columns in :marks listing again, again

This commit is contained in:
Doug Kearns
2008-10-04 13:03:45 +00:00
parent 2309f5577c
commit 56592a1490

View File

@@ -1836,8 +1836,8 @@ liberator.Marks = function () //{{{
let list = liberator.template.tabular(["mark", "line", "col", "file"], let list = liberator.template.tabular(["mark", "line", "col", "file"],
["", "text-align: right", "text-align: right", "color: green"], ["", "text-align: right", "text-align: right", "color: green"],
([mark[0], ([mark[0],
Math.round(mark[1].position.x & 100) + "%", Math.round(mark[1].position.x * 100) + "%",
Math.round(mark[1].position.y & 100) + "%", Math.round(mark[1].position.y * 100) + "%",
mark[1].location] mark[1].location]
for each (mark in marks))); for each (mark in marks)));
liberator.commandline.echo(list, liberator.commandline.HL_NORMAL, liberator.commandline.FORCE_MULTILINE); liberator.commandline.echo(list, liberator.commandline.HL_NORMAL, liberator.commandline.FORCE_MULTILINE);