File: fix_hotkey_for_help_menu.diff

package info (click to toggle)
lfm 3.1-2
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, buster
  • size: 548 kB
  • sloc: python: 5,172; makefile: 6
file content (16 lines) | stat: -rw-r--r-- 497 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Description: The default hotkey for help menu is h
Forwarded: no
Author: Daniel Echeverry <epsilon77@gmail.com>
Origin: vendor
Last-Update: 2018-11-17
--- a/lfm/ui.py
+++ b/lfm/ui.py
@@ -505,7 +505,7 @@
                 self.win.addstr(0, len(s)+4, 'Path: ' + filename)
         if self.w > 10:
             try:
-                self.win.addstr(0, self.w-8, 'F1=Help')
+                self.win.addstr(0, self.w-8, 'h=Help')
             except:
                 pass
         self.win.refresh()