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

convert single quotes to double quotes

This commit is contained in:
Doug Kearns
2007-11-06 11:22:39 +00:00
parent e6a678257d
commit b204012556
15 changed files with 75 additions and 75 deletions

View File

@@ -634,7 +634,7 @@ vimperator.Events = function() //{{{
}
var count_str = vimperator.input.buffer.match(/^[0-9]*/)[0];
var candidate_command = (vimperator.input.buffer + key).replace(count_str, '');
var candidate_command = (vimperator.input.buffer + key).replace(count_str, "");
var map;
// counts must be at the start of a complete mapping (10j -> go 10 lines down)