1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-26 23:05:47 +01:00

Don't commafy charlist options in :set output.

This commit is contained in:
Kris Maglione
2011-10-08 04:36:14 -04:00
parent be52494f4f
commit 0307817e4d
3 changed files with 7 additions and 4 deletions

View File

@@ -515,7 +515,7 @@ var Buffer = Module("Buffer", {
}
else {
let w = win.innerWidth;
rect = { x: w / 2 - w / 10, y: 0, width: w / 5, height: win.innerHeight };
rect = { x: w / 3, y: 0, width: w / 3, height: win.innerHeight };
}
var reduce = function (a, b) DOM(a).rect.top < DOM(b).rect.top ? a : b;