Xcode immediate autocompletion (not only to the next CamelCase)
Posted
by
courteous
on Super User
See other posts from Super User
or by courteous
Published on 2012-04-09T14:44:03Z
Indexed on
2012/04/09
17:38 UTC
Read the original article
Hit count: 234
autocomplete
|xcode
How to make the autocompletion feature return the current suggestion (from "completion list") in full?
That is, how not to jump only to the next CamelCase with TAB ... but instead have, say, CTRL + TAB choose the suggestion immediately/in full?
Example
Having CGPDFStringGetLength
selected in the "completion list", one would have to press TAB four (4) times!
- first TAB get to
CGPDF
- then to
CGPDFString
- then to
CGPDFStringGet
- then to
CGPDFStringGetLength
It would be nice to have CTRL + TAB (for example) make the above a one-step process.
© Super User or respective owner