Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
调试器真的在(调试)我。每次我尝试输入 po ... 命令时,它都会自动完成(不给我任何选项),我最终会输入诸如此类的东西po [selfelf,直到我发疯。有什么方法可以阻止这种情况,或者总是像标准编辑器一样给我自动完成弹出窗口?
po [selfelf
此答案适用于 GDB 调试器,它不再是与 Xcode 一起使用的标准调试器
这是通过将以下行添加到“readline init 文件”(默认情况下,我认为不存在)来实现的。我创建了文件~/.inputrc并将以下文本放入其中:
~/.inputrc
set disable-completions 'On'
嗯,接受的答案有点矫枉过正。
提供给这个问题的答案怎么样:
我最接近解决这个令人难以置信的烦人问题的方法是关闭自动代码完成(首选项>文本编辑>键入时建议完成),然后在我确实需要代码完成时按esc。