'Accept replacement' doesn't work when "rust_region_style" set to "none"
AndrejMitrovic opened this issue · 1 comments
AndrejMitrovic commented
Sublime Text Version
E.g Sublime Text 4 (Build 4113)
Rust Enhanced Version
v2.25.0
Operating system
OS Name Microsoft Windows 10 Pro
Expected behavior
Clicking Accept Replacement
should have worked.
Actual behavior
Clicking it does nothing.
Steps to reproduce
- Set
rust_region_style
tonone
in preferences.
{
"rust_region_style": "none",
}
- Write a simple Rust file:
mod print;
fn main() {
println("foobar");
}
- Save the file.
- Error suggests to use
!
when callingprintln
. But clickingAccept replacement:
does nothing. - If
rust_region_style
is set to any other value, then theAccept replacement:
button does work.