From 9bb2dddf993b0d58fd4fa09388f4aefa04ae0ee9 Mon Sep 17 00:00:00 2001 From: kernelsmith Date: Mon, 14 Jan 2013 14:53:31 -0600 Subject: [PATCH] adds @todo for when tab_comp norm is completed tab_completion normalization is RM7649 --- lib/msf/ui/console/command_dispatcher/core.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/msf/ui/console/command_dispatcher/core.rb b/lib/msf/ui/console/command_dispatcher/core.rb index e6916164d9..59ee1b5093 100644 --- a/lib/msf/ui/console/command_dispatcher/core.rb +++ b/lib/msf/ui/console/command_dispatcher/core.rb @@ -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