Skip to content
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

How to disable 'double shift' press for 'Search files by name' dialog #348

Open
seigert opened this issue Apr 25, 2024 · 3 comments
Open
Assignees
Labels
Milestone

Comments

@seigert
Copy link

seigert commented Apr 25, 2024

As of v1.7.1 VSCode suddenly started to show me 'Search files by name' after (seemingly) random keypresses.

After some research I've found that it reacts on some phantom double-shift presses that I make while typing (like, shift, unpress, shift-I for 'I'). After some more reasearch I've found that disabling this extension resolves the problem, but that would be rather unfortunate.

Besides, I do not have this problem in IntelliJ IDEA itself -- maybe because pause between shift presses are slightly bigger or because Idea does not react to shift-shift-character presses.

Either way, right now I looking for a way to disable this function for extension, but cannot find it neither in keybinding nor in extension settings.

@grgar
Copy link
Contributor

grgar commented Apr 27, 2024

It's in Keyboard Shortcuts, search for "shift shift".

Screenshot 2024-04-27 at 8 32 54 PM

You can disable it by right-click → Remove Keybinding on that row, or add the following to your keybindings.json:

{
    "key": "shift shift",
    "command": "-workbench.action.quickOpen"
}

@kasecato kasecato self-assigned this Apr 28, 2024
@kasecato
Copy link
Owner

kasecato commented Apr 28, 2024

The way to disable it is as described by #348 (comment)

I'll add "how to disable" to README.md at v.1.7.2

@kasecato kasecato added this to the v1.7.2 milestone Apr 28, 2024
kasecato added a commit that referenced this issue Apr 28, 2024
kasecato added a commit that referenced this issue Apr 28, 2024
Add #348 that how to disable 'double shift' press for 'Search files b…
@seigert
Copy link
Author

seigert commented May 2, 2024

Thanks, I've found it!

But somehow, this keybinding does not use shift icon on Mac OS, and uses literal shift word (while all other keybindings use icon), which may be threw me off...

Screenshot 2024-05-02 at 11 22 12

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants