adds @todo for when tab_comp norm is completed

tab_completion normalization is RM7649
This commit is contained in:
kernelsmith
2013-01-14 14:53:31 -06:00
parent 7ca9a216f4
commit 9bb2dddf99
@@ -2453,7 +2453,9 @@ class Core
def cmd_grep_tabs(str, words)
# @todo, make sure this works, just guessed to start
tabs = @@grep_opts.fmt.keys || [] # default to use grep's options
tabs = driver.tab_complete(str, words) if (str and str =~ /\w/) # if not an opt, use normal tab comp.
# if not an opt, use normal tab comp.
# @todo uncomment out next line when tab_completion normalization is complete RM7649
# tabs = driver.get_all_commands if (str and str =~ /\w/)
tabs
end