We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 500b622 commit 285c138Copy full SHA for 285c138
lib/msf/ui/console/command_dispatcher/core.rb
@@ -813,6 +813,18 @@ def cmd_rename_job(*args)
813
true
814
end
815
816
+ #
817
+ # Tab completion for the rename_job command
818
819
+ # @param str [String] the string currently being typed before tab was hit
820
+ # @param words [Array<String>] the previously completed words on the command line. words is always
821
+ # at least 1 when tab completion has reached this stage since the command itself has been completed
822
+
823
+ def cmd_rename_job_tabs(str, words)
824
+ return [] if words.length > 1
825
+ framework.jobs.keys
826
+ end
827
828
def cmd_jobs_help
829
print_line "Usage: jobs [options]"
830
print_line
0 commit comments