1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-24 08:42:28 +01:00

remove FIXME comment

This commit is contained in:
Doug Kearns
2007-06-21 16:13:18 +00:00
parent 2165705ab2
commit e962dce8af

View File

@@ -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);
}/*}}}*/