如何在 Xcode 代码片段中定位光标插入符号
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以只使用
<##>
。它将显示一个您可以选择的“气泡”,这并不理想,但它确实会将光标插入符号移动到该位置。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.这里有几个例子补充@rdougan 的有用答案。这并不完全是OP在问题中所问的内容,但这正是我根据标题来到这里时所寻找的内容。
自定义示例
为您提供
标准示例
您还可以观察任何标准代码片段以了解它们是如何制作的。只需单击代码片段区域中的其中一个即可。
给出了
关于如何添加自定义代码片段的提醒:
在代码编辑器中照常编写代码。然后突出显示它并将其拖到代码片段窗口中。将弹出一个对话框,您可以在其中为其指定一个简单的快捷方式。
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
gives you
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.
which gives
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.