Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I turn on parenthesis matching in Xcode?

Curly brace matching was pretty easy to turn on. How can I turn on parenthesis matching in Xcode?

like image 944
MrDatabase Avatar asked Jun 05 '09 04:06

MrDatabase


1 Answers

on Xcode Version 6.1 (6A1052d), you just need to double click on one of the parenthesis and the entire code that the parenthesis is scoping out is highlighted.

for example, if you have a code like the one below and you double click '{' or '}' bracket the entire code in their scope is highlighted :

if(condition == true) { //do something }

like image 163
shazzing Avatar answered Oct 11 '22 18:10

shazzing