What is the command to match brackets in Emacs? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T11:20:45Z http://stackoverflow.com/feeds/question/261522 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/261522/what-is-the-command-to-match-brackets-in-emacs 5 What is the command to match brackets in Emacs? Chris Huang-Leaver 2008-11-04T10:59:24Z 2008-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#261545 6 Answer by Alexander Kojevnikov for What is the command to match brackets in Emacs? Alexander Kojevnikov 2008-11-04T11:10:20Z 2008-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#261712 3 Answer by Chris Conway for What is the command to match brackets in Emacs? Chris Conway 2008-11-04T12:22:54Z 2008-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#275675 0 Answer by wallyqs for What is the command to match brackets in Emacs? wallyqs 2008-11-09T06:20:41Z 2008-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>