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

add fold markers

This commit is contained in:
Doug Kearns
2007-10-04 13:29:26 +00:00
parent cab3e949ea
commit 59c68520b8

View File

@@ -473,7 +473,7 @@ vimperator.completion = (function() // {{{
return build_longest_common_substring(mapped, filter); return build_longest_common_substring(mapped, filter);
}, //}}} }, //}}}
javascript: function(str) javascript: function(str) // {{{
{ {
g_substrings = []; g_substrings = [];
var matches = str.match(/^(.*?)(\s*\.\s*)?(\w*)$/); var matches = str.match(/^(.*?)(\s*\.\s*)?(\w*)$/);
@@ -538,7 +538,7 @@ vimperator.completion = (function() // {{{
} catch (e) { completions = []; }; } catch (e) { completions = []; };
return build_longest_starting_substring(completions, filter); return build_longest_starting_substring(completions, filter);
}, }, // }}}
exTabCompletion: function(str) //{{{ exTabCompletion: function(str) //{{{
{ {