<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=UTF-8" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Alex Rudyk wrote:
<blockquote
 cite="mid:151847509015096139786847824987721459733-Webmail2@me.com"
 type="cite">
  <pre wrap="">Hi

Often I am typing for example instanse.method_a(:param => "value"_)
with _ I marked where the caret is placed.

So the question is: is there any way to move caret from the position on the example
to the position right after right parentheses without moving my fingers to cursor keys.

So I want to be able then type .method_b on the same line as fast as possible.

This case is also applicable for single and double quotes.
  </pre>
</blockquote>
<br>
If the right paren was added by automatic pair matching, you should
just be able to type a right paren to skip over it. Otherwise, how
about recording a macro to move one character to the right (using the
cursor keys, of course) and assigning it to a key of your choice? Or
creating a snippet that you can tab through?<br>
<br>
You could possibly get more creative by writing a command bound to the
period key, examining $TM_CURRENT_LINE and $TM_COLUMN_NUMBER to take
different actions depending on whether or not the next character is a
right paren.<br>
<br>
<div class="moz-signature">-- <br>
<address
 style="font-family: sans-serif; font-style: italic; font-size: smaller;">
Steve King<br>
Sr. Software Engineer<br>
Arbor Networks<br>
+1 734 821 1461<br>
<a href="http://www.arbornetworks.com/">www.arbornetworks.com</a>
</address>
</div>
</body>
</html>