The most annoying shortcut is "C" because ctrl+c is to copy for windows and the create ticket keeps popping up.
I've been researching on how to disable keyboard shortcuts but I don't see it in the options in my settings within the "Avatar" section. It can potentially be a global setting within my company. Can anyone assist me? or can Jira change this shortcut to something else?
I do believe that ctrl+c is a very common thing to do.
Hi @Loc Le,
there is an issue for that:
https://jira.atlassian.com/browse/JRACLOUD-69482
Please vote for it.
Thanks. My vote is in :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
My vote is in as well
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Also, I am unable to disable keyboard shortcuts on Cloud as described here
https://confluence.atlassian.com/jirasoftwareserver/using-keyboard-shortcuts-939938977.html
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Removed, didn't realize this was a Jira question.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I had the same problem in Confluence while creating page using custom template. When user creates a new page using my template and presses Caps+C while filling up the contents, Confluence creates a new page and disregards the current page. I handled it in my template through JQuery. Here's the code
<script type="text/javascript"> AJS.toInit(function(){
if(Confluence.KeyboardShortcuts.enabled){
RW.shortcutsEnabled =function(){
return false;
};
}
});
</script>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.