简体   繁体   中英

How to position the cursor caret in Xcode code snippets

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.

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.

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

在此输入图像描述

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.

在此输入图像描述

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM