diff --git a/docs/en/general/raccourcis_clavier.md b/docs/en/general/raccourcis_clavier.md
index df887d74a494236c5f1224b3e20ac5a8ed31020a..35794159ed55a3e4ec8e0f30cd23791a2718cae5 100644
--- a/docs/en/general/raccourcis_clavier.md
+++ b/docs/en/general/raccourcis_clavier.md
@@ -9,6 +9,7 @@ To use keyboard shortcuts, the feature must be enabled in [application parameter
 - Alt + ↵: Triggers calculation of the current module
 - Alt + D: Duplicates the current module
 - Alt + W: Closes the current module
+- Alt + G: Shows modules diagram
 - Alt + 1: Positions the page on the "Input" section of the current module
 - Alt + 2: Positions the page on the "Results" section of the current module
 - Alt + 3: Positions the page on the "Charts" section of the current module
diff --git a/docs/fr/general/raccourcis_clavier.md b/docs/fr/general/raccourcis_clavier.md
index ff45666060374c88dc6cfb5eac63213131e620bd..e8cc64c7f3afbedfff2ae00f8c4ee4732ca58716 100644
--- a/docs/fr/general/raccourcis_clavier.md
+++ b/docs/fr/general/raccourcis_clavier.md
@@ -9,6 +9,7 @@ Pour utiliser les raccourcis clavier, il faut activer l'option dans [les paramè
 - Alt + ↵ : Lance le calcul du module en cours
 - Alt + D : Duplique le module en cours
 - Alt + W : Ferme le module en cours
+- Alt + G : Montre le diagramme des modules
 - Alt + 1 : Positionne la page sur la section "Données" du module en cours
 - Alt + 2 : Positionne la page sur la section "Résultats" du module en cours
 - Alt + 3 : Positionne la page sur la section "Graphique" du module en cours
diff --git a/src/app/app.component.ts b/src/app/app.component.ts
index 8715bba4edd853d426a076b86df7e685de898b69..a8e5dff53fbcc2aff7c1daa18a888bf3f9e6eafc 100644
--- a/src/app/app.component.ts
+++ b/src/app/app.component.ts
@@ -136,6 +136,7 @@ export class AppComponent implements OnInit, OnDestroy, Observer {
     this.hotkeysService.add(new Hotkey("alt+o", AppComponent.onHotkey(this.loadSession, this)));
     this.hotkeysService.add(new Hotkey("alt+q", AppComponent.onHotkey(this.emptySession, this)));
     this.hotkeysService.add(new Hotkey("alt+n", AppComponent.onHotkey(this.toList, this)));
+    this.hotkeysService.add(new Hotkey("alt+g", AppComponent.onHotkey(this.toDiagram, this)));
   }
 
   /**