diff --git a/chrome/content/vimperator/completion.js b/chrome/content/vimperator/completion.js index aafdc75f..489fb779 100644 --- a/chrome/content/vimperator/completion.js +++ b/chrome/content/vimperator/completion.js @@ -295,7 +295,7 @@ function get_command_completions(filter)/*{{{*/ } for (var command in vimperator.commands) - completions.push([command.long_names, command.short_help]); // # FIXME: just return it in the format expected by blss() for now -- djk + completions.push([command.long_names, command.short_help]); return build_longest_starting_substring(completions, filter); }/*}}}*/