diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index 284231b200..406e91a6d2 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -70,7 +70,7 @@
{{- if $File }}
{{- with $File.Path }}
@@ -83,7 +83,7 @@
{{- $toc := (and $hastoc (not $currentDisableToc)) }}
{{- if $toc }}
diff --git a/static/js/theme.js b/static/js/theme.js
index 30b14f63c0..da532bcf66 100644
--- a/static/js/theme.js
+++ b/static/js/theme.js
@@ -526,7 +526,7 @@ function tocEscapeHandler( event ){
}
function sidebarShortcutHandler( event ){
- if( event.altKey && event.ctrlKey && event.which == 77 /* m */ ){
+ if( event.altKey && event.ctrlKey && event.which == 78 /* n */ ){
showNav();
}
}
@@ -538,7 +538,7 @@ function tocShortcutHandler( event ){
}
function editShortcutHandler( event ){
- if( event.altKey && event.ctrlKey && event.which == 69 /* e */ ){
+ if( event.altKey && event.ctrlKey && event.which == 87 /* w */ ){
showEdit();
}
}