Remap Shift + Ctrl to Shift + Alt with AutoHotKey?
Is there a way for AutoHotKey to re-map the functionality Shift+Ctrl+← or → arrow (which highlights everything to the left/right) to Shift+Alt+← or →?
Coming from a Mac I'm so used to having the CMD button next to the space bar and I prefer it that way..
autohotkey
add a comment |
Is there a way for AutoHotKey to re-map the functionality Shift+Ctrl+← or → arrow (which highlights everything to the left/right) to Shift+Alt+← or →?
Coming from a Mac I'm so used to having the CMD button next to the space bar and I prefer it that way..
autohotkey
As a long-time Windows user, I would strongly recommend not doing this; there are many programs that use chorded metakeys (combinations of Ctrl, Alt, and Shift) for program commands, and remapping may well block access to those commands. It would be better to recognize that Windows is not the Mac, and learn to accommodate the differences, just as many Windows users do on the occasions that they have to use Macs or Linux.
– Jeff Zeitlin
Dec 17 '18 at 14:47
Mhmm.. perhaps, that just sucks though. Long time mac user @ home and forced to use Windows for work
– erikvm
Dec 17 '18 at 14:51
No different than those of us who use Windows at home, and have to use Linux or Macs at work...
– Jeff Zeitlin
Dec 17 '18 at 14:53
Irrelevant for this question though
– erikvm
Dec 17 '18 at 14:55
add a comment |
Is there a way for AutoHotKey to re-map the functionality Shift+Ctrl+← or → arrow (which highlights everything to the left/right) to Shift+Alt+← or →?
Coming from a Mac I'm so used to having the CMD button next to the space bar and I prefer it that way..
autohotkey
Is there a way for AutoHotKey to re-map the functionality Shift+Ctrl+← or → arrow (which highlights everything to the left/right) to Shift+Alt+← or →?
Coming from a Mac I'm so used to having the CMD button next to the space bar and I prefer it that way..
autohotkey
autohotkey
edited Dec 26 '18 at 19:19
mature
1494
1494
asked Dec 17 '18 at 14:40
erikvm
31
31
As a long-time Windows user, I would strongly recommend not doing this; there are many programs that use chorded metakeys (combinations of Ctrl, Alt, and Shift) for program commands, and remapping may well block access to those commands. It would be better to recognize that Windows is not the Mac, and learn to accommodate the differences, just as many Windows users do on the occasions that they have to use Macs or Linux.
– Jeff Zeitlin
Dec 17 '18 at 14:47
Mhmm.. perhaps, that just sucks though. Long time mac user @ home and forced to use Windows for work
– erikvm
Dec 17 '18 at 14:51
No different than those of us who use Windows at home, and have to use Linux or Macs at work...
– Jeff Zeitlin
Dec 17 '18 at 14:53
Irrelevant for this question though
– erikvm
Dec 17 '18 at 14:55
add a comment |
As a long-time Windows user, I would strongly recommend not doing this; there are many programs that use chorded metakeys (combinations of Ctrl, Alt, and Shift) for program commands, and remapping may well block access to those commands. It would be better to recognize that Windows is not the Mac, and learn to accommodate the differences, just as many Windows users do on the occasions that they have to use Macs or Linux.
– Jeff Zeitlin
Dec 17 '18 at 14:47
Mhmm.. perhaps, that just sucks though. Long time mac user @ home and forced to use Windows for work
– erikvm
Dec 17 '18 at 14:51
No different than those of us who use Windows at home, and have to use Linux or Macs at work...
– Jeff Zeitlin
Dec 17 '18 at 14:53
Irrelevant for this question though
– erikvm
Dec 17 '18 at 14:55
As a long-time Windows user, I would strongly recommend not doing this; there are many programs that use chorded metakeys (combinations of Ctrl, Alt, and Shift) for program commands, and remapping may well block access to those commands. It would be better to recognize that Windows is not the Mac, and learn to accommodate the differences, just as many Windows users do on the occasions that they have to use Macs or Linux.
– Jeff Zeitlin
Dec 17 '18 at 14:47
As a long-time Windows user, I would strongly recommend not doing this; there are many programs that use chorded metakeys (combinations of Ctrl, Alt, and Shift) for program commands, and remapping may well block access to those commands. It would be better to recognize that Windows is not the Mac, and learn to accommodate the differences, just as many Windows users do on the occasions that they have to use Macs or Linux.
– Jeff Zeitlin
Dec 17 '18 at 14:47
Mhmm.. perhaps, that just sucks though. Long time mac user @ home and forced to use Windows for work
– erikvm
Dec 17 '18 at 14:51
Mhmm.. perhaps, that just sucks though. Long time mac user @ home and forced to use Windows for work
– erikvm
Dec 17 '18 at 14:51
No different than those of us who use Windows at home, and have to use Linux or Macs at work...
– Jeff Zeitlin
Dec 17 '18 at 14:53
No different than those of us who use Windows at home, and have to use Linux or Macs at work...
– Jeff Zeitlin
Dec 17 '18 at 14:53
Irrelevant for this question though
– erikvm
Dec 17 '18 at 14:55
Irrelevant for this question though
– erikvm
Dec 17 '18 at 14:55
add a comment |
1 Answer
1
active
oldest
votes
; "LShift + LAlt + Left" to "Shift + Ctrl + Left"
<+<!Left:: Send {Ctrl Down}{Shift Down}{Left}{Shift Up}{Ctrl Up}
; "LShift + LAlt + Right" to "Shift + Ctrl + Right"
<+<!Right:: Send {Ctrl Down}{Shift Down}{Right}{Shift Up}{Ctrl Up}
- "<+" is the modifier symbol for the LShift and "<"!" for the LAlt key.
- Modifier symbols are used only in key combinations for modifying
other keys (in this case the keys left and right arrow). - All other LShift + LAlt + Key combinations in the system or programs (if any) remain intact.
https://autohotkey.com/docs/commands/Send.htm
Thanks a lot! Appreciate it
– erikvm
Dec 17 '18 at 19:48
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1385267%2fremap-shift-ctrl-to-shift-alt-with-autohotkey%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
; "LShift + LAlt + Left" to "Shift + Ctrl + Left"
<+<!Left:: Send {Ctrl Down}{Shift Down}{Left}{Shift Up}{Ctrl Up}
; "LShift + LAlt + Right" to "Shift + Ctrl + Right"
<+<!Right:: Send {Ctrl Down}{Shift Down}{Right}{Shift Up}{Ctrl Up}
- "<+" is the modifier symbol for the LShift and "<"!" for the LAlt key.
- Modifier symbols are used only in key combinations for modifying
other keys (in this case the keys left and right arrow). - All other LShift + LAlt + Key combinations in the system or programs (if any) remain intact.
https://autohotkey.com/docs/commands/Send.htm
Thanks a lot! Appreciate it
– erikvm
Dec 17 '18 at 19:48
add a comment |
; "LShift + LAlt + Left" to "Shift + Ctrl + Left"
<+<!Left:: Send {Ctrl Down}{Shift Down}{Left}{Shift Up}{Ctrl Up}
; "LShift + LAlt + Right" to "Shift + Ctrl + Right"
<+<!Right:: Send {Ctrl Down}{Shift Down}{Right}{Shift Up}{Ctrl Up}
- "<+" is the modifier symbol for the LShift and "<"!" for the LAlt key.
- Modifier symbols are used only in key combinations for modifying
other keys (in this case the keys left and right arrow). - All other LShift + LAlt + Key combinations in the system or programs (if any) remain intact.
https://autohotkey.com/docs/commands/Send.htm
Thanks a lot! Appreciate it
– erikvm
Dec 17 '18 at 19:48
add a comment |
; "LShift + LAlt + Left" to "Shift + Ctrl + Left"
<+<!Left:: Send {Ctrl Down}{Shift Down}{Left}{Shift Up}{Ctrl Up}
; "LShift + LAlt + Right" to "Shift + Ctrl + Right"
<+<!Right:: Send {Ctrl Down}{Shift Down}{Right}{Shift Up}{Ctrl Up}
- "<+" is the modifier symbol for the LShift and "<"!" for the LAlt key.
- Modifier symbols are used only in key combinations for modifying
other keys (in this case the keys left and right arrow). - All other LShift + LAlt + Key combinations in the system or programs (if any) remain intact.
https://autohotkey.com/docs/commands/Send.htm
; "LShift + LAlt + Left" to "Shift + Ctrl + Left"
<+<!Left:: Send {Ctrl Down}{Shift Down}{Left}{Shift Up}{Ctrl Up}
; "LShift + LAlt + Right" to "Shift + Ctrl + Right"
<+<!Right:: Send {Ctrl Down}{Shift Down}{Right}{Shift Up}{Ctrl Up}
- "<+" is the modifier symbol for the LShift and "<"!" for the LAlt key.
- Modifier symbols are used only in key combinations for modifying
other keys (in this case the keys left and right arrow). - All other LShift + LAlt + Key combinations in the system or programs (if any) remain intact.
https://autohotkey.com/docs/commands/Send.htm
answered Dec 17 '18 at 18:54
user3419297
1,721267
1,721267
Thanks a lot! Appreciate it
– erikvm
Dec 17 '18 at 19:48
add a comment |
Thanks a lot! Appreciate it
– erikvm
Dec 17 '18 at 19:48
Thanks a lot! Appreciate it
– erikvm
Dec 17 '18 at 19:48
Thanks a lot! Appreciate it
– erikvm
Dec 17 '18 at 19:48
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1385267%2fremap-shift-ctrl-to-shift-alt-with-autohotkey%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
As a long-time Windows user, I would strongly recommend not doing this; there are many programs that use chorded metakeys (combinations of Ctrl, Alt, and Shift) for program commands, and remapping may well block access to those commands. It would be better to recognize that Windows is not the Mac, and learn to accommodate the differences, just as many Windows users do on the occasions that they have to use Macs or Linux.
– Jeff Zeitlin
Dec 17 '18 at 14:47
Mhmm.. perhaps, that just sucks though. Long time mac user @ home and forced to use Windows for work
– erikvm
Dec 17 '18 at 14:51
No different than those of us who use Windows at home, and have to use Linux or Macs at work...
– Jeff Zeitlin
Dec 17 '18 at 14:53
Irrelevant for this question though
– erikvm
Dec 17 '18 at 14:55