Creating a custom function key in Windows
I would like to "create" a fn key ( similar to what laptops have ) on a desktop keyboard. What I would like to do is to bind Capslock to a new custom key, so that I can add new shortcuts involving that key.
For example, remapping the jkil keys to left/down/top/right keys. So when
Capslock + J is pressed, a left arrow keypress is simulated.
I cannot bind the capslock key to an existing key like Win/Shift/Ctrl/Alt, because it will cause conflicts in my text editor because of the additional custom functionality I have within it.
windows keyboard keyboard-shortcuts remapping
add a comment |
I would like to "create" a fn key ( similar to what laptops have ) on a desktop keyboard. What I would like to do is to bind Capslock to a new custom key, so that I can add new shortcuts involving that key.
For example, remapping the jkil keys to left/down/top/right keys. So when
Capslock + J is pressed, a left arrow keypress is simulated.
I cannot bind the capslock key to an existing key like Win/Shift/Ctrl/Alt, because it will cause conflicts in my text editor because of the additional custom functionality I have within it.
windows keyboard keyboard-shortcuts remapping
What is "jkil keys"? You can use AutoHotKey script.
– Biswapriyo
Feb 9 at 8:21
Did you see this question (with answer) when searching? superuser.com/questions/117242/…
– Ian McGowan
Feb 9 at 8:31
add a comment |
I would like to "create" a fn key ( similar to what laptops have ) on a desktop keyboard. What I would like to do is to bind Capslock to a new custom key, so that I can add new shortcuts involving that key.
For example, remapping the jkil keys to left/down/top/right keys. So when
Capslock + J is pressed, a left arrow keypress is simulated.
I cannot bind the capslock key to an existing key like Win/Shift/Ctrl/Alt, because it will cause conflicts in my text editor because of the additional custom functionality I have within it.
windows keyboard keyboard-shortcuts remapping
I would like to "create" a fn key ( similar to what laptops have ) on a desktop keyboard. What I would like to do is to bind Capslock to a new custom key, so that I can add new shortcuts involving that key.
For example, remapping the jkil keys to left/down/top/right keys. So when
Capslock + J is pressed, a left arrow keypress is simulated.
I cannot bind the capslock key to an existing key like Win/Shift/Ctrl/Alt, because it will cause conflicts in my text editor because of the additional custom functionality I have within it.
windows keyboard keyboard-shortcuts remapping
windows keyboard keyboard-shortcuts remapping
asked Feb 9 at 6:23
wdGelwixwdGelwix
1
1
What is "jkil keys"? You can use AutoHotKey script.
– Biswapriyo
Feb 9 at 8:21
Did you see this question (with answer) when searching? superuser.com/questions/117242/…
– Ian McGowan
Feb 9 at 8:31
add a comment |
What is "jkil keys"? You can use AutoHotKey script.
– Biswapriyo
Feb 9 at 8:21
Did you see this question (with answer) when searching? superuser.com/questions/117242/…
– Ian McGowan
Feb 9 at 8:31
What is "jkil keys"? You can use AutoHotKey script.
– Biswapriyo
Feb 9 at 8:21
What is "jkil keys"? You can use AutoHotKey script.
– Biswapriyo
Feb 9 at 8:21
Did you see this question (with answer) when searching? superuser.com/questions/117242/…
– Ian McGowan
Feb 9 at 8:31
Did you see this question (with answer) when searching? superuser.com/questions/117242/…
– Ian McGowan
Feb 9 at 8:31
add a comment |
1 Answer
1
active
oldest
votes
You should check out AutoHotKey. It can (obviously) create hotkey remappings, but also do so much more! For your case, it can also remap the right shift, alt, ctrl separately from the left, if you wanted something like RCtrl::j to be mapped to left arrow, leaving the left control key alone...
https://autohotkey.com/docs/misc/Remap.htm
Hello and thank you for your answer. I did check it out before you reply, but I encountered an issue with the CapsLock key in particular. If you bind keys in combination with capslock (eg. Capslock & i:: up), pressing the Capslock key and then I will trigger the described action. Pressing the capslock key, however, at the same time with any other key, will toggle the capslock functionality (it stays on). The only way that I figured out, is to remap the capslock key to another key with something like SharpKeys, but I want to have just one script that handles everything. No multiple software.
– wdGelwix
Feb 10 at 11:00
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%2f1403773%2fcreating-a-custom-function-key-in-windows%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
You should check out AutoHotKey. It can (obviously) create hotkey remappings, but also do so much more! For your case, it can also remap the right shift, alt, ctrl separately from the left, if you wanted something like RCtrl::j to be mapped to left arrow, leaving the left control key alone...
https://autohotkey.com/docs/misc/Remap.htm
Hello and thank you for your answer. I did check it out before you reply, but I encountered an issue with the CapsLock key in particular. If you bind keys in combination with capslock (eg. Capslock & i:: up), pressing the Capslock key and then I will trigger the described action. Pressing the capslock key, however, at the same time with any other key, will toggle the capslock functionality (it stays on). The only way that I figured out, is to remap the capslock key to another key with something like SharpKeys, but I want to have just one script that handles everything. No multiple software.
– wdGelwix
Feb 10 at 11:00
add a comment |
You should check out AutoHotKey. It can (obviously) create hotkey remappings, but also do so much more! For your case, it can also remap the right shift, alt, ctrl separately from the left, if you wanted something like RCtrl::j to be mapped to left arrow, leaving the left control key alone...
https://autohotkey.com/docs/misc/Remap.htm
Hello and thank you for your answer. I did check it out before you reply, but I encountered an issue with the CapsLock key in particular. If you bind keys in combination with capslock (eg. Capslock & i:: up), pressing the Capslock key and then I will trigger the described action. Pressing the capslock key, however, at the same time with any other key, will toggle the capslock functionality (it stays on). The only way that I figured out, is to remap the capslock key to another key with something like SharpKeys, but I want to have just one script that handles everything. No multiple software.
– wdGelwix
Feb 10 at 11:00
add a comment |
You should check out AutoHotKey. It can (obviously) create hotkey remappings, but also do so much more! For your case, it can also remap the right shift, alt, ctrl separately from the left, if you wanted something like RCtrl::j to be mapped to left arrow, leaving the left control key alone...
https://autohotkey.com/docs/misc/Remap.htm
You should check out AutoHotKey. It can (obviously) create hotkey remappings, but also do so much more! For your case, it can also remap the right shift, alt, ctrl separately from the left, if you wanted something like RCtrl::j to be mapped to left arrow, leaving the left control key alone...
https://autohotkey.com/docs/misc/Remap.htm
answered Feb 9 at 8:35
Ian McGowanIan McGowan
1835
1835
Hello and thank you for your answer. I did check it out before you reply, but I encountered an issue with the CapsLock key in particular. If you bind keys in combination with capslock (eg. Capslock & i:: up), pressing the Capslock key and then I will trigger the described action. Pressing the capslock key, however, at the same time with any other key, will toggle the capslock functionality (it stays on). The only way that I figured out, is to remap the capslock key to another key with something like SharpKeys, but I want to have just one script that handles everything. No multiple software.
– wdGelwix
Feb 10 at 11:00
add a comment |
Hello and thank you for your answer. I did check it out before you reply, but I encountered an issue with the CapsLock key in particular. If you bind keys in combination with capslock (eg. Capslock & i:: up), pressing the Capslock key and then I will trigger the described action. Pressing the capslock key, however, at the same time with any other key, will toggle the capslock functionality (it stays on). The only way that I figured out, is to remap the capslock key to another key with something like SharpKeys, but I want to have just one script that handles everything. No multiple software.
– wdGelwix
Feb 10 at 11:00
Hello and thank you for your answer. I did check it out before you reply, but I encountered an issue with the CapsLock key in particular. If you bind keys in combination with capslock (eg. Capslock & i:: up), pressing the Capslock key and then I will trigger the described action. Pressing the capslock key, however, at the same time with any other key, will toggle the capslock functionality (it stays on). The only way that I figured out, is to remap the capslock key to another key with something like SharpKeys, but I want to have just one script that handles everything. No multiple software.
– wdGelwix
Feb 10 at 11:00
Hello and thank you for your answer. I did check it out before you reply, but I encountered an issue with the CapsLock key in particular. If you bind keys in combination with capslock (eg. Capslock & i:: up), pressing the Capslock key and then I will trigger the described action. Pressing the capslock key, however, at the same time with any other key, will toggle the capslock functionality (it stays on). The only way that I figured out, is to remap the capslock key to another key with something like SharpKeys, but I want to have just one script that handles everything. No multiple software.
– wdGelwix
Feb 10 at 11:00
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.
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%2f1403773%2fcreating-a-custom-function-key-in-windows%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
What is "jkil keys"? You can use AutoHotKey script.
– Biswapriyo
Feb 9 at 8:21
Did you see this question (with answer) when searching? superuser.com/questions/117242/…
– Ian McGowan
Feb 9 at 8:31