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
Open test.rs with the following content:
test.rs
fn func() {} fn main() { func(); }
Enable racer-mode
racer-mode
Place caret over func() call inside main, press M-:, type (racer-find-definition), press Enter.
func()
(racer-find-definition)
Point should've jumped to fn func() {} on the 1st line, the same as it would if the command was executed with M-x instead.
fn func() {}
Point doesn't move.
The text was updated successfully, but these errors were encountered:
Allow functions to be called non-interactively, i.e. from a code
184ca92
Fixes: racer-rust#117 Signed-off-by: Konstantin Kharlamov <Hi-Angel@yandex.ru>
Allow functions to be called non-interactively, e.g. from a code
b4e72ab
839d38c
No branches or pull requests
Steps to reproduce
Open
test.rs
with the following content:Enable
racer-mode
Place caret over
func()
call inside main, press M-:, type(racer-find-definition)
, press Enter.Expected
Point should've jumped to
fn func() {}
on the 1st line, the same as it would if the command was executed with M-x instead.Actual
Point doesn't move.
The text was updated successfully, but these errors were encountered: