grep tab complete is working, but not fully

options tab complete, but not the commands at the end
unstable
kernelsmith 2013-01-13 03:06:56 -06:00
parent d9990829d9
commit 7f90082bec
1 changed files with 5 additions and 2 deletions

View File

@ -2451,8 +2451,11 @@ class Core
end
def cmd_grep_tabs(str, words)
# TODO, make sure this works, just guessed to start
tab_complete(words.join(" "))
# @todo, make sure this works, just guessed to start
tabs = []
tabs += @@grep_opts.fmt.keys if (str and not str =~ /\w/)
#tabs += driver.tab_complete_stub(str)
tabs
end
#