如何在没有选项的情况下阻止 XCode 调试器自动完成?

发布于 2024-12-01 11:07:28 字数 146 浏览 0 评论 0原文

调试器确实在困扰我。每次我尝试输入 po ... 命令时,它都会自动完成(不给我任何选项),并且我最终会输入诸如 po [selfelf 等内容,直到我发疯。有什么办法可以阻止这种情况,或者总是给我像标准编辑器一样的自动完成弹出窗口?

The debugger is really (de)bugging me. Every time I try to type a po ... command, it autocompletes (without giving me any options) and I end up typing stuff like po [selfelf and so on until I go mad. Is there any way of stopping this, or of always giving me the autocomplete popup like in the standard editor?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

放血 2024-12-08 11:07:28

这个答案适用于 GDB 调试器,它不再是 Xcode 使用的标准调试器

这是通过将以下行添加到“readline init 文件”(默认情况下,我认为不存在)来实现的)。我创建了文件 ~/.inputrc 并将以下文本放入其中:

set disable-completions 'On'

This answer applied to the GDB debugger which is no longer the standard debugger used with Xcode

This is achieved by adding the following line to the "readline init file" (which, by default, I think does not exist). I created the file ~/.inputrc and put the following text in it:

set disable-completions 'On'
桃酥萝莉 2024-12-08 11:07:28

嗯,接受的答案有点矫枉过正。

这个问题的答案怎么样:

我最接近解决这个令人难以置信的烦人问题的是
一般情况下关闭自动代码完成(首选项>文本
编辑>键入时建议完成),然后随时按 esc
我实际上确实想要代码完成。

Hmm, the accepted answer is kind of overkill.

How about the answer provided to this question:

The closest I've come to solving this incredibly annoying problem is
to turn off automatic code completion in general (Preferences > Text
Editing > Suggest Completions While Typing) and then hit esc whenever
I actually do want code completion.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文