What is the command to match brackets in Emacs? - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T11:20:45Zhttp://stackoverflow.com/feeds/question/261522http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/261522/what-is-the-command-to-match-brackets-in-emacs5What is the command to match brackets in Emacs?Chris Huang-Leaver2008-11-04T10:59:24Z2008-11-09T06:20:41Z
<p>Hi,</p>
<p>What is the command to match brackets in Emacs (the equivalent of the '%' command in vim)?</p>
http://stackoverflow.com/questions/261522/what-is-the-command-to-match-brackets-in-emacs/261545#2615456Answer by Alexander Kojevnikov for What is the command to match brackets in Emacs?Alexander Kojevnikov2008-11-04T11:10:20Z2008-11-04T11:10:20Z<p><a href="http://www.gnu.org/software/emacs/emacs-faq.html#Matching-parentheses" rel="nofollow">5.29 How do I show which parenthesis matches the one I'm looking at?</a></p>
http://stackoverflow.com/questions/261522/what-is-the-command-to-match-brackets-in-emacs/261712#2617123Answer by Chris Conway for What is the command to match brackets in Emacs?Chris Conway2008-11-04T12:22:54Z2008-11-04T12:22:54Z<p><code>C-M-f</code>, or <code>M-x forward-sexp</code>, goes forward to the closing brace, or to the opening brace in the next set of braces. <code>C-M-b</code>, or <code>M-x backward-sexp</code>, goes backward to the opening brace, or to the closing brace in the next set of braces. These commands will work for parentheses, square brackets, curly braces, angle brackets, etc., and can be customized to recognize other delimiters.</p>
http://stackoverflow.com/questions/261522/what-is-the-command-to-match-brackets-in-emacs/275675#2756750Answer by wallyqs for What is the command to match brackets in Emacs?wallyqs2008-11-09T06:20:41Z2008-11-09T06:20:41Z<p>There is also a 'show-paren-mode'. For navigation, I think it's better <strong>C-M-n</strong>and <strong>C-M-n</strong></p>