如何在 Xcode 代码片段中定位光标插入符号

发布于 2024-12-04 20:53:24 字数 77 浏览 2 评论 0原文

在 xcode 4 中插入代码片段后是否可以指定光标应在的位置?有没有<##>这个的样式标记?我无法找到有关代码片段的良好文档。

Is it possible to specify where the cursor should be after inserting a code snippet in xcode 4? Is there a <# #> style marker for this? I'm having trouble finding good documentation on code snippets.

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

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

发布评论

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

评论(2

西瑶 2024-12-11 20:53:24

您可以只使用<##>。它将显示一个您可以选择的“气泡”,这并不理想,但它确实会将光标插入符号移动到该位置。

You can just use <##>. It will show a "bubble" you can select, which isn't ideal, but it does move the cursor caret to that location.

剑心龙吟 2024-12-11 20:53:24

这里有几个例子补充@rdougan 的有用答案。这并不完全是OP在问题中所问的内容,但这正是我根据标题来到这里时所寻找的内容。

自定义示例

print("<#text#>")

为您提供

在此处输入图像描述

标准示例

您还可以观察任何标准代码片段以了解它们是如何制作的。只需单击代码片段区域中的其中一个即可。

输入图片此处的描述

给出了

在此处输入图像描述

关于如何添加自定义代码片段的提醒:

在代码编辑器中照常编写代码。然后突出显示它并将其拖到代码片段窗口中。将弹出一个对话框,您可以在其中为其指定一个简单的快捷方式。

输入图片此处描述

Here are a couple examples supplementing @rdougan's helpful answer. This is not exactly what the OP was asking in the question, but it is what I was looking for when I came here based on the title.

Custom Example

print("<#text#>")

gives you

enter image description here

Standard Example

You can also observe any of the standard code snippets to see how they are made. Just click one of them in the code snippet area.

enter image description here

which gives

enter image description here

Reminder on how to add custom code snippets:

Write your code as normal in the code editor. Then highlight it and drag it into the code snippet window. A dialog box will pop up where you can give it a simple shortcut.

enter image description here

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