How to restore quick fixes when using Tabby? #3605
Replies: 1 comment 2 replies
-
Can you provide screenshots for your IDE with / without tabby on quickfixes? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
When I'm not using Tabby, if I have (say) an unimported name, (which is a syntax error), I can select 'quick fix', and my IDE will give me some options such as create a
use
line or to qualify the name. But with Tabby running, these quick fixes are no longer available. How can I get them back?This is in the context of Rust and Codium, but it should apply in any language and IDE.
For example,
let new_var = some_func();
use some_crate::some_func;
,some_crate::some_func;
" or the like;So, is there an advanced setting that I could specify to get the old behaviour back?
Beta Was this translation helpful? Give feedback.
All reactions