cody
cody copied to clipboard
bug: autocompletes println instead of println!
Version
1.91.1
Describe the bug
The autocompletion feature in the IDE/editor is incorrectly suggesting println instead of the correct Rust macro println!. This behavior results in errors, as println without the exclamation mark is not a valid macro in Rust.
Expected behavior
The autocompletion feature should suggest println! when typing the beginning of the macro. This ensures that the correct Rust macro is used for printing output to the console. The suggestion should include the exclamation mark (!), which is essential for the println! macro's proper functionality. This helps prevent syntax errors and improves coding efficiency.
Additional context
No response