1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-03-10 06:35:47 +01:00

convert single quotes to double quotes

This commit is contained in:
Doug Kearns
2007-11-09 11:46:40 +00:00
parent d97b2bf942
commit 9dc9b7e49c
14 changed files with 95 additions and 95 deletions

View File

@@ -598,7 +598,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)