Merge pull request #2299 from prtksxna/colorauth

Add keyboard shortcut to Clear Authorship Colors. Fixes #2292
pull/2303/head
John McLear 2014-11-07 10:40:26 +00:00
commit e1fe1f0f9c
1 changed files with 7 additions and 1 deletions

View File

@ -3765,6 +3765,12 @@ function Ace2Inner(){
doInsertOrderedList() doInsertOrderedList()
specialHandled = true; specialHandled = true;
} }
if ((!specialHandled) && isTypeForCmdKey && String.fromCharCode(which).toLowerCase() == "c" && (evt.metaKey || evt.ctrlKey) && evt.shiftKey) {
// cmd-shift-C (clearauthorship)
fastIncorp(9);
evt.preventDefault();
CMDS.clearauthorship();
}
if ((!specialHandled) && isTypeForCmdKey && String.fromCharCode(which).toLowerCase() == "h" && (evt.ctrlKey)) if ((!specialHandled) && isTypeForCmdKey && String.fromCharCode(which).toLowerCase() == "h" && (evt.ctrlKey))
{ {
// cmd-H (backspace) // cmd-H (backspace)