forked from dbp/sublime-rust
-
Notifications
You must be signed in to change notification settings - Fork 105
Find in Files: Next Result / Previous Result shortcuts (F4 / Shift + F4) broken #209
New issue
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
Comments
ehuss
added a commit
to ehuss/sublime-rust
that referenced
this issue
Sep 14, 2017
ehuss
added a commit
to ehuss/sublime-rust
that referenced
this issue
Sep 23, 2017
jasonwilliams
pushed a commit
that referenced
this issue
Oct 28, 2017
* Sort build messages by level for next/prev shortcuts. * Add tests for next/prev message order. * Update for rust 1.22. * Next/Prev message support when show_errors_inline is False. Fixes #206. * Add undocumented config variable to disable message sorting. * Support scrolling the build output panel on next/prev message. * Fix on-save checking when show_errors_inline is false. To disable on-save checking, set rust_syntax_checking to false. * Next/Prev message cycles through test errors. * Ensure that all views are closed after running tests. * Fix cyclic import. * Fix test errors that panic outside of the crate. Rust display the source file to the outside crate, which probably isn't available in the current workspace. Next/Prev message was opening a non-existent file. * Fix Next/Prev overriding find-in-files next/prev result. Fixes #209.
urschrei
pushed a commit
to urschrei/sublime-rust
that referenced
this issue
Jan 30, 2018
* Sort build messages by level for next/prev shortcuts. * Add tests for next/prev message order. * Update for rust 1.22. * Next/Prev message support when show_errors_inline is False. Fixes rust-lang#206. * Add undocumented config variable to disable message sorting. * Support scrolling the build output panel on next/prev message. * Fix on-save checking when show_errors_inline is false. To disable on-save checking, set rust_syntax_checking to false. * Next/Prev message cycles through test errors. * Ensure that all views are closed after running tests. * Fix cyclic import. * Fix test errors that panic outside of the crate. Rust display the source file to the outside crate, which probably isn't available in the current workspace. Next/Prev message was opening a non-existent file. * Fix Next/Prev overriding find-in-files next/prev result. Fixes rust-lang#209.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The default shortcuts to navigate the find results of "Find in Files" (F4 and Shift + F4) do not work when Rust Enhanced is in effect. I suspect this is because Rust Enhanced redefines them to trigger the "rust_next_message" and "rust_prev_message" actions. Not sure what those actions do in addition to the default next_result / prev_result, but maybe they should just fall back to the default behavior when "Find in Files" is in effect?
The text was updated successfully, but these errors were encountered: