Reputation: 26792
Sometimes while scrolling through a document in Notepad++, a small tan box will appear showing a list of currently opened files.
I've checked every command in the Shortcut Mapper, but I haven't been able to figure out what makes this box appear. I've lost my place by switching files a few times because of it.
Why does this box of open files keep appearing?
Upvotes: 3
Views: 882
Reputation: 1554
As someone has already said, the menu opens with Right click + Mouse Wheel. You can disable the popup in Notepad 7.9.1:
note:
Upvotes: 2
Reputation: 26792
This answer appears to be for versions of Notepad++ before 7.3.3. The program has since been updated. Please see the other answers to this question.
Apparently the document switcher opens with Right Click + Mouse Wheel. It allows you to switch between tabs with the scroll wheel.
Based on this unanswered Super User question from 2013, there doesn't seem to be any way to disable this shortcut.
Upvotes: 2
Reputation: 12194
Although there is no way in Notepad++ alone (without changing the source code) there is a way using the following AutoHotKey macros:
WheelDown::
GetKeyState state, RButton, P ; get state of right mouse button
If (state = "U") { ; U = up
Send {WheelDown}
}
Return
WheelUp::
GetKeyState state, RButton, P ; get state of right mouse button
If (state = "U") { ; U = up
Send {WheelUp}
}
Return
I tested it in Notepad++, it works. As you can see from the code, mouse wheel is always captured but forwarded to further processing only in case when right mouse button is up.
If you want to restrict this behavior only to Notepad++, add #IfWinActive directive, otherwise it is system-wide.
Note: AHK has intentional limit of incoming events per second (here: from scroll wheel). If it is exceeded, AHK prints a warning. But you can increase the limit and you should be good to go.
Upvotes: 0