I'm not sure if I've been dreaming these past years, but all the time I've used lldb
, I've been able to autocomplete source file names when setting breakpoints
(lldb) breakpoint set --file m<TAB>
would autocomplete to
(lldb) breakpoint set --file main.cpp
for instance. Now this does not work anymore. Neither in lldb 3.8.0 on Ubuntu 16.04, nor in lldb 10.0.1 or 12.x on macOS. This renders command-line usage basically impossible if I have to manually copy-paste or type in file names.
What could this be caused by and how do I restore this function?