From e962dce8af833f1c1dced55471592031f930f49a Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Thu, 21 Jun 2007 16:13:18 +0000 Subject: [PATCH] remove FIXME comment --- chrome/content/vimperator/completion.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }/*}}}*/