Page 1 of 1

Right Shift then Control?

Posted: 05 May 2024, 14:34
by cinematic6436
Notepad in Windows 11 has the worst feature that I keep accidentally activating -- if you hit Control + Right Shift, it activates the "Right-to-left reading order" option, which I do not have a need for. I wrote the following script to disable it...

Code: Select all

#NoTrayIcon
#SingleInstance force
^RShift:: 
return
...but much to my surprise and frustration, it didn't completely stop it from happening. I figured out it's because the shortcut is also Right Shift + Control. I tried the following...

Code: Select all

#NoTrayIcon
#SingleInstance force
RShift^:: 
return
...but get an error message. Is there any other way I can format the combination of Right Shift + Control? I want to try to avoid remapping RShift & LShift because those have specified uses in other programs. Any help anyone could provide would be greatly appreciated!

[Mod edit: Added [code][/code] tags. Please use them yourself when posting code!]

Re: Right Shift then Control?  Topic is solved

Posted: 05 May 2024, 16:15
by boiler

Code: Select all

>+Ctrl::return

Re: Right Shift then Control?

Posted: 05 May 2024, 19:19
by cinematic6436
boiler wrote:
05 May 2024, 16:15

Code: Select all

>+Ctrl::return
Thanks!