willcrichton / flowistry

Flowistry is an IDE plugin for Rust that helps you focus on relevant code.
https://marketplace.visualstudio.com/items?itemName=wcrichton.flowistry
MIT License
1.91k stars 45 forks source link

Fix terminal usage with VSCode plugin #63

Closed jplatte closed 1 year ago

jplatte commented 1 year ago

The extension's keyboard shortcuts are now registered to only be active when the terminal is not focused, so Ctrl+R is still passed through the terminal for users who install the extension.

Fixes #61.

willcrichton commented 1 year ago

Thanks for the fix! To prevent interactions with other extensions, perhaps it would make sense to do "when": "editorFocus" instead of negating the specific problematic cases?