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: 209

Filed under:
|

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!

  1. first TAB get to CGPDF
  2. then to CGPDFString
  3. then to CGPDFStringGet
  4. 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

Related posts about autocomplete

Related posts about xcode