1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 22:02:26 +01:00

Fix return signature of incrementURL.

This commit is contained in:
Doug Kearns
2008-12-23 22:30:55 +11:00
parent 99384f1dad
commit f859d73149

View File

@@ -132,14 +132,17 @@ const config = { //{{{
{
let matches = buffer.URL.match(/(.*?)(\d+)(\D*)$/);
if (!matches)
return liberator.beep();
{
liberator.beep();
return;
}
let [, pre, number, post] = matches;
let newNumber = parseInt(number, 10) + count;
let newNumberStr = String(newNumber > 0 ? newNumber : 0);
if (number.match(/^0/)) // add 0009<C-a> should become 0010
{
while(newNumberStr.length < number.length)
while (newNumberStr.length < number.length)
newNumberStr = "0" + newNumberStr;
}