readline ¤
Readline interface for the Pwndbg LLDB REPL.
Mostly concerns itself with argument completion.
Functions:
-
complete–Runs the tab autocompletion function for readline based on the values
-
display_completions–Display the completions found by
completein the style of LLDB. -
wrap_with_history– -
ctx_with_history– -
enable_readline–Enables the readline functionality.
-
disable_readline–Disables the readline functionality.
Attributes:
-
backend– -
info_msg– -
P– -
T– -
PROMPT– -
HISTORY_FILE– -
complete_values– -
complete_descrs–
info_msg module-attribute ¤
info_msg = "INFO: gnureadline is not installed, for best REPL experience please install gnureadline"
complete ¤
complete(dbg: LLDB, text: str, state: int) -> str | None
Runs the tab autocompletion function for readline based on the values returned by SBCommandInterpreter.HandleCompletion.
display_completions ¤
Display the completions found by complete in the style of LLDB.