@@ -150,6 +150,16 @@ def binding(key: str, desc: str, indent: int = 4) -> str:
150150
151151 lines : list [str ] = []
152152
153+ # ═══════════════════════════════════════════════════════════════════
154+ # GLOBAL
155+ # ═══════════════════════════════════════════════════════════════════
156+ lines .append (section ("GLOBAL" ))
157+ lines .append (binding (":q" , "Quit" ))
158+ lines .append (binding (f"{ leader_key } t" , "Change theme" ))
159+ lines .append (binding (f"{ leader_key } f" , "Toggle fullscreen pane" ))
160+ lines .append (binding (f"{ leader_key } e" , "Toggle explorer visibility" ))
161+ lines .append ("" )
162+
153163 # ═══════════════════════════════════════════════════════════════════
154164 # NAVIGATION
155165 # ═══════════════════════════════════════════════════════════════════
@@ -293,17 +303,6 @@ def binding(key: str, desc: str, indent: int = 4) -> str:
293303 lines .append (binding ("<esc>" , "Close picker" ))
294304 lines .append ("" )
295305
296- # ═══════════════════════════════════════════════════════════════════
297- # GLOBAL
298- # ═══════════════════════════════════════════════════════════════════
299- lines .append (section ("GLOBAL" ))
300- lines .append (binding ("^q" , "Quit" ))
301- lines .append (binding (f"{ leader_key } q" , "Quit (from menu)" ))
302- lines .append (binding (f"{ leader_key } t" , "Change theme" ))
303- lines .append (binding (f"{ leader_key } f" , "Toggle fullscreen pane" ))
304- lines .append (binding (f"{ leader_key } e" , "Toggle explorer visibility" ))
305- lines .append ("" )
306-
307306 # ═══════════════════════════════════════════════════════════════════
308307 # COMMAND MODE
309308 # ═══════════════════════════════════════════════════════════════════
0 commit comments