-
Notifications
You must be signed in to change notification settings - Fork 18
Open
Labels
Description
Plese check following code:
def self.get_user_by_auth_token(auth_token)
decoded_open_id = decoded["open_id"]?
if decoded_auth_token_salt.nil?
return nil
end
user
endWhen the cursor is upon the def, after pressing C-M-F, What we expected is to jump to the last line after end.
But, the actual behavior is: (cursor is I)
def self.get_user_by_auth_token(auth_token)
decoded_open_id = decoded["open_id"]?
if decoded_auth_token_salt.nil?
return nil
endI
user
endthe jumped position is after the end of if.