1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 12:38:00 +01:00

Allow ` as local mark

This commit is contained in:
Kris Maglione
2009-01-17 23:43:29 -05:00
parent e4cd0611f9
commit 53f33e0561

View File

@@ -1565,7 +1565,7 @@ function Marks() //{{{
}
}
function isLocalMark(mark) /^['"a-z]$/.test(mark);
function isLocalMark(mark) /^['`a-z]$/.test(mark);
function isURLMark(mark) /^[A-Z0-9]$/.test(mark);
function localMarkIter()