We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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 end
When the cursor is upon the def, after pressing C-M-F, What we expected is to jump to the last line after end.
C-M-F
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 end
the jumped position is after the end of if.
end of if
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Plese check following code:
When 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)
the jumped position is after the
end of if
.The text was updated successfully, but these errors were encountered: